| 12345678910111213141516171819202122 |
- import BaseSchema from '@ioc:Adonis/Lucid/Schema'
- export default class extends BaseSchema {
- protected tableName = 'categories'
- public async up() {
- this.schema.createTable(this.tableName, (table) => {
- table.increments('id')
- /**
- * Uses timestamptz for PostgreSQL and DATETIME2 for MSSQL
- */
- table.datetime('created_at', { useTz: true })
- table.datetime('updated_at', { useTz: true })
- table.string('name').notNullable()
- })
- }
- public async down() {
- this.schema.dropTable(this.tableName)
- }
- }
|