upkeep based on phase times now
This commit is contained in:
@@ -4,6 +4,7 @@ exports.up = async knex => {
|
||||
table.index('id');
|
||||
table.timestamps(true, true);
|
||||
table.binary('data').notNullable();
|
||||
table.timestamp('upkeep');
|
||||
table.boolean('finished')
|
||||
.defaultTo(false)
|
||||
.notNullable()
|
||||
@@ -26,6 +27,7 @@ exports.up = async knex => {
|
||||
.notNullable()
|
||||
.index();
|
||||
|
||||
table.timestamp('upkeep');
|
||||
});
|
||||
|
||||
await knex.schema.createTable('players', table => {
|
||||
|
||||
Reference in New Issue
Block a user