aboutsummaryrefslogtreecommitdiffstats
path: root/database/migrations/1612629845398_users_update_schema.js
blob: 10b82aa621853fb936bd9467d07a0f008603592e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** @type {import('@adonisjs/lucid/src/Schema')} */
const Schema = use('Schema');

class UsersUpdateSchema extends Schema {
  up() {
    this.table('users', (table) => {
      table.string('lastname', 80).notNullable().default('');
    });
  }

  down() {
    this.table('users', (table) => {
      table.dropColumn('lastname');
    });
  }
}

module.exports = UsersUpdateSchema;