backend/data/migrations/20200502193341_participant.js

28 lines
719 B
JavaScript
Raw Normal View History

2020-05-02 19:06:34 +00:00
exports.up = (knex) => {
return knex.schema.createTable('participant', (table) => {
2020-05-04 16:47:05 +00:00
table.integer('account_id').unsigned();
table.uuid('meeting_id').unsigned();
2020-05-02 19:06:34 +00:00
table
.foreign('meeting_id')
.references('meeting.id')
.onDelete('cascade');
2020-05-02 19:06:34 +00:00
table
.foreign('account_id')
.references('account.id')
.onDelete('cascade');
table.primary(['meeting_id', 'account_id']);
2020-05-02 19:06:34 +00:00
table.time('earliest_time');
table.time('latest_time');
table.boolean('quorum');
table.boolean('mandatory');
table.boolean('host');
table.boolean('answered');
table.string('timezone').notNullable();
table.timestamps(true, true);
});
};
exports.down = (knex) => {
return knex.schema.dropTable('participant');
};