instance finished flag in db
This commit is contained in:
@@ -22,6 +22,12 @@ exports.up = async knex => {
|
||||
.defaultTo(false)
|
||||
.notNullable()
|
||||
.index();
|
||||
|
||||
table.boolean('finished')
|
||||
.defaultTo(false)
|
||||
.notNullable()
|
||||
.index();
|
||||
|
||||
});
|
||||
|
||||
await knex.schema.createTable('players', table => {
|
||||
|
||||
Reference in New Issue
Block a user