seepur/database/migrations/1578967442653_child_schema.js

27 lines
497 B
JavaScript
Raw Normal View History

'use strict'
/** @type {import('@adonisjs/lucid/src/Schema')} */
const Schema = use('Schema')
class ChildSchema extends Schema {
up () {
this.create('children', (table) => {
table.increments()
table.string('name')
table.date('birthday')
table.bigInteger('user_id')
table.string('avatar')
table.string('state')
table.timestamps()
table.index(['user_id'])
})
}
down () {
this.drop('children')
}
}
module.exports = ChildSchema