mnml/ops/migrations/20190709132153_mtx.js
2019-07-09 14:12:32 +10:00

23 lines
505 B
JavaScript

exports.up = async knex => {
await knex.schema.createTable('mtx', table => {
table.uuid('id')
.primary();
table.uuid('account')
.notNullable()
.index();
table.foreign('account')
.references('id')
.inTable('accounts')
.onDelete('RESTRICT');
table.string('variant')
.notNullable()
.index();
table.timestamps(true, true);
});
};
exports.down = async () => {};