mirror of
https://github.com/ppy/osu.git
synced 2025-02-15 14:03:01 +08:00
Remove custom db additions
This commit is contained in:
parent
437e121056
commit
c13950fbbf
@ -35,7 +35,6 @@ namespace osu.Game.Migrations
|
|||||||
AudioFile = table.Column<string>(type: "TEXT", nullable: true),
|
AudioFile = table.Column<string>(type: "TEXT", nullable: true),
|
||||||
Author = table.Column<string>(type: "TEXT", nullable: true),
|
Author = table.Column<string>(type: "TEXT", nullable: true),
|
||||||
BackgroundFile = table.Column<string>(type: "TEXT", nullable: true),
|
BackgroundFile = table.Column<string>(type: "TEXT", nullable: true),
|
||||||
VideoFile = table.Column<string>(type: "TEXT", nullable: true),
|
|
||||||
PreviewTime = table.Column<int>(type: "INTEGER", nullable: false),
|
PreviewTime = table.Column<int>(type: "INTEGER", nullable: false),
|
||||||
Source = table.Column<string>(type: "TEXT", nullable: true),
|
Source = table.Column<string>(type: "TEXT", nullable: true),
|
||||||
Tags = table.Column<string>(type: "TEXT", nullable: true),
|
Tags = table.Column<string>(type: "TEXT", nullable: true),
|
||||||
|
@ -15,7 +15,6 @@ namespace osu.Game.Migrations
|
|||||||
migrationBuilder.Sql($"UPDATE `BeatmapInfo` SET `Path` = REPLACE(`Path`, '{windowsStyle}', '{standardized}')");
|
migrationBuilder.Sql($"UPDATE `BeatmapInfo` SET `Path` = REPLACE(`Path`, '{windowsStyle}', '{standardized}')");
|
||||||
migrationBuilder.Sql($"UPDATE `BeatmapMetadata` SET `AudioFile` = REPLACE(`AudioFile`, '{windowsStyle}', '{standardized}')");
|
migrationBuilder.Sql($"UPDATE `BeatmapMetadata` SET `AudioFile` = REPLACE(`AudioFile`, '{windowsStyle}', '{standardized}')");
|
||||||
migrationBuilder.Sql($"UPDATE `BeatmapMetadata` SET `BackgroundFile` = REPLACE(`BackgroundFile`, '{windowsStyle}', '{standardized}')");
|
migrationBuilder.Sql($"UPDATE `BeatmapMetadata` SET `BackgroundFile` = REPLACE(`BackgroundFile`, '{windowsStyle}', '{standardized}')");
|
||||||
migrationBuilder.Sql($"UPDATE `BeatmapMetadata` SET `VideoFile` = REPLACE(`VideoFile`, '{windowsStyle}', '{standardized}')");
|
|
||||||
migrationBuilder.Sql($"UPDATE `BeatmapSetFileInfo` SET `Filename` = REPLACE(`Filename`, '{windowsStyle}', '{standardized}')");
|
migrationBuilder.Sql($"UPDATE `BeatmapSetFileInfo` SET `Filename` = REPLACE(`Filename`, '{windowsStyle}', '{standardized}')");
|
||||||
migrationBuilder.Sql($"UPDATE `SkinFileInfo` SET `Filename` = REPLACE(`Filename`, '{windowsStyle}', '{standardized}')");
|
migrationBuilder.Sql($"UPDATE `SkinFileInfo` SET `Filename` = REPLACE(`Filename`, '{windowsStyle}', '{standardized}')");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user