exports.up = function(knex, Promise) { return knex.schema.createTable('users', function (table) { table.increments().primary(); table.string('name').notNullable(); table.string('email').notNullable(); table.string('password').notNullable(); table.string('about').notNullable(); table.string('created_at').notNullable().defaultTo(knex.raw('CURRENT_TIMESTAMP')); table.timestamp('updated_at').notNullable().defaultTo(knex.raw('CURRENT_TIMESTAMP')); }) }; exports.down = function(knex, Promise) { return knex.schema.dropTable('users'); };