seepur/database/migrations/1503248427885_user.js
2020-03-17 18:16:34 -04:00

26 lines
622 B
JavaScript

'use strict'
/** @type {import('@adonisjs/lucid/src/Schema')} */
const Schema = use('Schema')
class UserSchema extends Schema {
up() {
this.create('users', (table) => {
table.increments();
table.string('email', 254).notNullable().unique();
table.string('name').notNullable();
table.string('password', 60).notNullable();
table.string('avatar');
table.boolean('is_admin').defaultTo(false).notNullable();
table.datetime('last_logged_in').defaultTo(null).nullable();
table.timestamps();
});
}
down() {
this.drop('users');
}
}
module.exports = UserSchema