1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-31 19:32:51 +00:00

SceneMappings added to Migrations... again.

This commit is contained in:
Mark McDowall 2011-06-17 17:00:38 -07:00
parent 335639fabc
commit ec0ef5d46d

View file

@ -91,6 +91,13 @@ public override void Up()
new Column("Value", DbType.String, ColumnProperty.NotNull)
});
Database.AddTable("SceneMappings", "SQLite", new[]
{
new Column("CleanTitle", DbType.String, ColumnProperty.PrimaryKey),
new Column("SeriesId", DbType.Int32, ColumnProperty.NotNull),
new Column("SceneName", DbType.String, ColumnProperty.NotNull)
});
Database.AddTable("History", "SQLite", new[]
{
new Column("HistoryId", DbType.Int64, ColumnProperty.PrimaryKey),