pubsub
This commit is contained in:
@@ -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 () => {};
|
||||
Reference in New Issue
Block a user