Change default password and possible_date type

This commit is contained in:
2020-08-23 16:04:06 +02:00
parent 12ecf719e9
commit 8afa93c708
3 changed files with 7 additions and 7 deletions

View File

@@ -6,7 +6,7 @@ exports.up = (knex) => {
.foreign('meeting_id')
.references('meeting.id')
.onDelete('cascade');
table.date('possible_date').notNullable();
table.string('possible_date').notNullable();
table.timestamps(true, true);
});
};