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

12 lines
330 B
CoffeeScript

exports.up = (knex, Promise) ->
knex.schema.createTable 'saved_battles', (t) ->
t.increments()
t.string('battle_id').index().notNull()
t.integer('user_id').index().notNull()
t.unique(['battle_id', 'user_id'])
t.timestamps()
exports.down = (knex, Promise) ->
knex.schema.dropTableIfExists 'saved_battles'