mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-01-18 19:51:45 +08:00
Corrected indexing bugs with SqlCe
--HG-- branch : dev
This commit is contained in:
@@ -6,7 +6,7 @@ namespace Orchard.Indexing.DataMigrations {
|
||||
|
||||
public int Create() {
|
||||
SchemaBuilder.CreateTable("IndexingTaskRecord", table => table
|
||||
.Column<int>("Id", column => column.PrimaryKey())
|
||||
.Column<int>("Id", column => column.PrimaryKey().Identity())
|
||||
.Column<int>("Action")
|
||||
.Column<DateTime>("CreatedUtc")
|
||||
.Column<int>("ContentItemRecord_id")
|
||||
|
||||
Reference in New Issue
Block a user