diff --git a/osu.Game/Database/RulesetInfo.cs b/osu.Game/Database/RulesetInfo.cs index d7bab39b97..c3c0d4343d 100644 --- a/osu.Game/Database/RulesetInfo.cs +++ b/osu.Game/Database/RulesetInfo.cs @@ -12,8 +12,10 @@ namespace osu.Game.Database [PrimaryKey, AutoIncrement] public int? ID { get; set; } + [Indexed(Unique = true)] public string Name { get; set; } + [Indexed(Unique = true)] public string InstantiationInfo { get; set; } [Indexed]