--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-10-19 15:16:18 -07:00
19 changed files with 273 additions and 464 deletions

View File

@@ -4,10 +4,10 @@ namespace Orchard.Themes {
public class ThemesDataMigration : DataMigrationImpl {
public int Create() {
//CREATE TABLE Orchard_Themes_ThemeSiteSettingsRecord (Id INTEGER not null, CurrentThemeName TEXT, primary key (Id));
SchemaBuilder.CreateTable("ThemeSiteSettingsPartRecord", table => table
.ContentPartRecord()
.Column<string>("CurrentThemeName")
SchemaBuilder.CreateTable("ThemeSiteSettingsPartRecord",
table => table
.ContentPartRecord()
.Column<string>("CurrentThemeName")
);
return 1;