diff --git a/server-new/mongodb/migrations/1601816721286_match.ts b/server-new/mongodb/migrations/1601816721286_match.ts index 1187d86..31dd714 100644 --- a/server-new/mongodb/migrations/1601816721286_match.ts +++ b/server-new/mongodb/migrations/1601816721286_match.ts @@ -2,7 +2,7 @@ import BaseMigration from '@ioc:Mongodb/Migration' export default class MatchMigration extends BaseMigration { public up (): void { - // this.createCollection('matches') + this.createCollection('matches') this.createIndex('matches', 'gameId') this.createIndex('matches', 'summoner_puuid') } diff --git a/server-new/mongodb/migrations/1601819828861_summoner.ts b/server-new/mongodb/migrations/1601819828861_summoner.ts index 87045a4..ee54b3c 100644 --- a/server-new/mongodb/migrations/1601819828861_summoner.ts +++ b/server-new/mongodb/migrations/1601819828861_summoner.ts @@ -2,7 +2,7 @@ import BaseMigration from '@ioc:Mongodb/Migration' export default class SummonerMigration extends BaseMigration { public up (): void { - // this.createCollection('summoners') + this.createCollection('summoners') this.createIndex('summoners', 'puuid') } } diff --git a/server-new/mongodb/migrations/1601819837856_detailed_match.ts b/server-new/mongodb/migrations/1601819837856_detailed_match.ts index 4c86664..a7d4044 100644 --- a/server-new/mongodb/migrations/1601819837856_detailed_match.ts +++ b/server-new/mongodb/migrations/1601819837856_detailed_match.ts @@ -2,7 +2,7 @@ import BaseMigration from '@ioc:Mongodb/Migration' export default class DetailedMatchMigration extends BaseMigration { public up (): void { - // this.createCollection('detailed_matches') + this.createCollection('detailed_matches') this.createIndex('detailed_matches', 'gameId') } }