Skip to content

Commit f62f264

Browse files
committed
Bump schema ver
1 parent faffdcc commit f62f264

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Refresh.Database/GameDatabaseProvider.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void Initialize()
4747
#endif
4848

4949
#if !POSTGRES
50-
protected override ulong SchemaVersion => 168;
50+
protected override ulong SchemaVersion => 169;
5151

5252
protected override string Filename => "refreshGameServer.realm";
5353

@@ -135,7 +135,7 @@ protected override void Migrate(Migration migration, ulong oldVersion)
135135
{
136136
IQueryable<dynamic>? oldUsers = migration.OldRealm.DynamicApi.All("GameUser");
137137
IQueryable<GameUser>? newUsers = migration.NewRealm.All<GameUser>();
138-
if (oldVersion < 165)
138+
if (oldVersion < 169)
139139
for (int i = 0; i < newUsers.Count(); i++)
140140
{
141141
dynamic oldUser = oldUsers.ElementAt(i);
@@ -341,7 +341,7 @@ protected override void Migrate(Migration migration, ulong oldVersion)
341341
}
342342
}
343343

344-
if (oldVersion < 168)
344+
if (oldVersion < 169)
345345
newUser.ShowReuploadedContent = true;
346346
}
347347

0 commit comments

Comments
 (0)