Change fk constraint in possible_date migration

This commit is contained in:
rui hildt 2020-05-04 19:00:20 +02:00
parent 6ce64b5e95
commit b7b7dbbc73
2 changed files with 9 additions and 10 deletions

View File

@ -3,14 +3,14 @@ exports.up = (knex) => {
table.integer('account_id').unsigned();
table.uuid('meeting_id').unsigned();
table
.foreign('meeting_id')
.references('meeting.id')
.onDelete('cascade');
.foreign('meeting_id')
.references('meeting.id')
.onDelete('cascade');
table
.foreign('account_id')
.references('account.id')
.onDelete('cascade');
table.primary(['meeting_id','account_id']);
.foreign('account_id')
.references('account.id')
.onDelete('cascade');
table.primary(['meeting_id', 'account_id']);
table.time('earliest_time');
table.time('latest_time');
table.boolean('quorum');

View File

@ -1,10 +1,9 @@
exports.up = (knex) => {
return knex.schema.createTable('possible_date', (table) => {
table.increments('id').primary();
table.uuid('meeting_id').unsigned().notNullable();
table
.uuid('meeting_id')
.unsigned()
.notNullable()
.foreign('meeting_id')
.references('meeting.id')
.onDelete('cascade');
table.date('possible_date').notNullable();