mnml/ops/migrations/20180913000513_create_accounts.js
2019-01-05 15:13:40 +11:00

14 lines
404 B
JavaScript
Executable File

exports.up = async knex => {
return knex.schema.createTable('accounts', table => {
table.uuid('id').primary();
table.timestamps();
table.string('name', 42).notNullable().unique();
table.string('password').notNullable();
table.string('token', 64).notNullable();
table.index('name');
table.index('id');
});
};
exports.down = async () => {};