Files
Orchard/src/Orchard.Web/Modules/Orchard.Search/Migrations.cs

17 lines
442 B
C#
Raw Normal View History

using Orchard.Data.Migration;
namespace Orchard.Search {
public class SearchDataMigration : DataMigrationImpl {
public int Create() {
SchemaBuilder.CreateTable("SearchSettingsPartRecord", table => table
.ContentPartRecord()
.Column<bool>("FilterCulture")
.Column<string>("SearchedFields")
);
return 1;
}
}
}