mnml/ops/migrations/20181014141623_inventory.js
2018-10-14 23:10:39 +11:00

14 lines
401 B
JavaScript

exports.up = async knex => {
return knex.schema.createTable('items', table => {
table.uuid('id').primary();
table.uuid('account').notNullable()
table.foreign('account')
.references('id')
.inTable('accounts')
.onDelete('CASCADE');
table.binary('data').notNullable();
table.index('id');
});
};
exports.down = async () => {};