forked from sagi/seepur
Sagi Dayan
d7c9359ef2
- DB migrations - Login/Register flows - Dockerfile - Layouts, Partials, Components - Sass - Bulma.io - sqlite
23 lines
485 B
JavaScript
23 lines
485 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.timestamps()
|
|
})
|
|
}
|
|
|
|
down () {
|
|
this.drop('users')
|
|
}
|
|
}
|
|
|
|
module.exports = UserSchema
|