1
0
mirror of https://gitlab.com/Deukhoofd/BattleSim.git synced 2025-09-02 00:47:19 +00:00
BattleSim/migrations/20140712155810_create_battles.coffee
2016-02-01 23:19:30 +01:00

16 lines
427 B
CoffeeScript

exports.up = (knex, Promise) ->
knex.schema.createTable 'battles', (t) ->
t.increments()
t.string('battle_id').index().unique().notNull()
t.string('name')
t.string('players').notNull()
t.string('format').notNull()
t.integer('num_active').notNull()
t.json('versions')
t.json('contents').notNull()
t.timestamps()
exports.down = (knex, Promise) ->
knex.schema.dropTableIfExists 'battles'