Skip to content

Commit

Permalink
Fixes #1179: TrackStatisticSafePathIndex is wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
Digimezzo Raphaël committed Aug 28, 2020
1 parent de16848 commit e766e48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dopamine.Data/DbMigrator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private void CreateTablesAndIndexes()
"SkipCount INTEGER," +
"DateLastPlayed INTEGER);");

conn.Execute("CREATE INDEX TrackStatisticSafePathIndex ON Track(SafePath);");
conn.Execute("CREATE INDEX TrackStatisticSafePathIndex ON TrackStatistic(SafePath);");
}
}

Expand Down

0 comments on commit e766e48

Please sign in to comment.