iut-hapi/lib/migrations/1-user.js

23 lines
424 B
JavaScript
Raw Normal View History

2021-04-12 03:24:17 +00:00
'use strict';
module.exports = {
async up(knex) {
//update table User for role
await knex.schema.table('user', (table) => {
table.string('role').notNullable().defaultTo('user');
});
},
async down(knex) {
//update table User for role
await knex.schema.table('user', (table) => {
table.dropColumn('role');
});
}
};