You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
564 B
20 lines
564 B
2 years ago
|
exports.up = async (knex) => {
|
||
|
// enable the WAL in sqlite3
|
||
|
await knex.raw('PRAGMA journal_mode=WAL;');
|
||
|
|
||
|
return knex.schema.createTable('user', (table) => {
|
||
|
table.timestamps(true, true);
|
||
|
table.increments('id');
|
||
|
table.string('initials').notNullable();
|
||
|
table.string('full_name').notNullable();
|
||
|
table.string('password').notNullable();
|
||
|
table.boolean('admin').defaultTo(false);
|
||
|
table.string('email').notNullable().unique();
|
||
|
table.index('email');
|
||
|
});
|
||
|
};
|
||
|
|
||
|
exports.down = function(knex) {
|
||
|
return knex.schema.dropTable('user');
|
||
|
};
|