mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-19 21:40:00 +02:00
reset - start a new Portfolio with Adonis js
This commit is contained in:
@@ -0,0 +1 @@
|
||||
// import Factory from '@ioc:Adonis/Lucid/Factory'
|
||||
@@ -0,0 +1,21 @@
|
||||
import BaseSchema from '@ioc:Adonis/Lucid/Schema'
|
||||
|
||||
export default class extends BaseSchema {
|
||||
protected tableName = 'users'
|
||||
|
||||
public async up() {
|
||||
this.schema.createTable(this.tableName, (table) => {
|
||||
table.increments('id').primary()
|
||||
table.string('pseudo', 50).notNullable
|
||||
table.string('email', 255).notNullable().unique()
|
||||
table.string('password', 180).notNullable()
|
||||
table.string('remember_me_token').nullable()
|
||||
table.timestamp('created_at', { useTz: true }).notNullable()
|
||||
table.timestamp('updated_at', { useTz: true }).notNullable()
|
||||
})
|
||||
}
|
||||
|
||||
public async down() {
|
||||
this.schema.dropTable(this.tableName)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user