27 lines
842 B
TypeScript
27 lines
842 B
TypeScript
import { BaseSchema } from '@adonisjs/lucid/schema'
|
|
|
|
export default class extends BaseSchema {
|
|
protected tableName = 'reservations'
|
|
|
|
async up() {
|
|
this.schema.createTable(this.tableName, (table) => {
|
|
table.increments('id')
|
|
table.integer('room_id').unsigned().references('id').inTable('rooms').onDelete('CASCADE')
|
|
table.string('customer_name').notNullable()
|
|
table.string('customer_phone').notNullable()
|
|
table.integer('guests_count').notNullable()
|
|
table.timestamp('starts_at').notNullable()
|
|
table.timestamp('ends_at').notNullable()
|
|
table.string('status').defaultTo('confirmed') // confirmed, cancelled
|
|
table.text('notes').nullable()
|
|
|
|
table.timestamp('created_at')
|
|
table.timestamp('updated_at')
|
|
})
|
|
}
|
|
|
|
async down() {
|
|
this.schema.dropTable(this.tableName)
|
|
}
|
|
}
|