fix: remove unique constraint (for coop vs IA games)

This commit is contained in:
Kalane 2021-09-19 20:47:41 +02:00
parent 1e2cc8e898
commit 027b6b2f3b

View file

@ -66,10 +66,6 @@ export default class MatchPlayers extends BaseSchema {
table.integer('perks_secondary_style').notNullable()
table.specificType('perks_selected', 'INT[]').notNullable()
})
this.schema.alterTable(this.tableName, (table) => {
table.unique(['match_id', 'summoner_puuid'])
})
}
public async down() {