This commit is contained in:
ntr
2019-07-17 17:26:01 +10:00
parent 4d3e4a843e
commit cac761546f
8 changed files with 175 additions and 158 deletions
-12
View File
@@ -54,18 +54,6 @@ exports.up = async knex => {
table.unique(['account', 'instance']);
});
await knex.schema.createTable('matchmaking', async table => {
table.uuid('id').primary();
table.index('id');
table.timestamps(true, true);
table.uuid('game').notNullable()
table.foreign('game')
.references('id')
.inTable('games')
.onDelete('NO ACTION');
});
};
exports.down = async () => {};