bastienrobert/la-ferme

View on GitHub
packages/server/db/migrate/20200403110303_create_rounds.ts

Summary

Maintainability
A
35 mins
Test Coverage
import Knex from 'knex'

export async function up(knex: Knex): Promise<any> {
  await knex.schema.createTable('rounds', table => {
    table.increments('id').primary()
    table.integer('game_id').references('games.id').onDelete('cascade')
    table.integer('player_id').references('players.id').onDelete('cascade')
    table.enu('step', ['NEW', 'CARD', 'CONFIRM', 'COMPLETE']).defaultTo('NEW')
    table.enu('type', ['DEFAULT', 'REPLAY', 'PASS']).defaultTo('DEFAULT')
    table.boolean('watch').defaultTo(false)
    table.string('civil_card')
    table.string('uncivil_card')
    table.enu('choice', ['CIVIL', 'UNCIVIL'])

    table.timestamps(true, true)
  })

  return
}

export async function down(knex: Knex): Promise<any> {
  await knex.schema.dropTable('rounds')

  return
}