rejoin games

This commit is contained in:
ntr
2018-11-22 18:39:08 +11:00
parent 557925801b
commit 3b33ac517c
7 changed files with 83 additions and 40 deletions
+1 -3
View File
@@ -5,11 +5,9 @@ exports.up = async knex => {
table.timestamps();
table.binary('data').notNullable();
table.boolean('open')
table.boolean('joinable')
.defaultTo(true)
.notNullable();
// table.boolean('active').notNullable();
});
await knex.schema.createTable('players', table => {