mirror of
https://github.com/ArthurDanjou/artdanj-api.git
synced 2026-01-14 12:14:33 +01:00
18 lines
425 B
TypeScript
Executable File
18 lines
425 B
TypeScript
Executable File
import BaseSchema from '@ioc:Adonis/Lucid/Schema'
|
|
|
|
export default class Subscribers extends BaseSchema {
|
|
protected tableName = 'subscribers'
|
|
|
|
public async up () {
|
|
this.schema.createTable(this.tableName, (table) => {
|
|
table.increments('id').primary()
|
|
table.string('email').notNullable()
|
|
table.timestamps(true, true)
|
|
})
|
|
}
|
|
|
|
public async down () {
|
|
this.schema.dropTable(this.tableName)
|
|
}
|
|
}
|