2.3.10.js 151 B

12345678
  1. exports.up = knex => {
  2. return knex.schema
  3. .alterTable('users', table => {
  4. table.string('lastLoginAt')
  5. })
  6. }
  7. exports.down = knex => { }