mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 03:25:23 +08:00
17 lines
442 B
C#
17 lines
442 B
C#
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;
|
|
}
|
|
}
|
|
} |