aboutsummaryrefslogtreecommitdiffstats
path: root/database/migrations/1612629845398_users_update_schema.js
blob: d07f66dc6d86b3a8b02ec5fd5328915b90700274 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict'

/** @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