mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
Fixing that Projection Migrations created indexes with the same name in different tables, which is not supported by PostgreSQL
This commit is contained in:
parent
289a0ba844
commit
4b21f0e95b
@ -72,17 +72,7 @@ namespace Orchard.Projections {
|
|||||||
SchemaBuilder.CreateTable("FieldIndexPartRecord", table => table.ContentPartRecord());
|
SchemaBuilder.CreateTable("FieldIndexPartRecord", table => table.ContentPartRecord());
|
||||||
|
|
||||||
//Adds indexes for better performances in queries
|
//Adds indexes for better performances in queries
|
||||||
SchemaBuilder.AlterTable("StringFieldIndexRecord", table => table.CreateIndex("IX_PropertyName", new string[] { "PropertyName" }));
|
AddPropertyNameAndFieldIndexPartRecordIdIndexes();
|
||||||
SchemaBuilder.AlterTable("StringFieldIndexRecord", table => table.CreateIndex("IX_FieldIndexPartRecord_Id", new string[] { "FieldIndexPartRecord_Id" }));
|
|
||||||
|
|
||||||
SchemaBuilder.AlterTable("IntegerFieldIndexRecord", table => table.CreateIndex("IX_PropertyName", new string[] { "PropertyName" }));
|
|
||||||
SchemaBuilder.AlterTable("IntegerFieldIndexRecord", table => table.CreateIndex("IX_FieldIndexPartRecord_Id", new string[] { "FieldIndexPartRecord_Id" }));
|
|
||||||
|
|
||||||
SchemaBuilder.AlterTable("DoubleFieldIndexRecord", table => table.CreateIndex("IX_PropertyName", new string[] { "PropertyName" }));
|
|
||||||
SchemaBuilder.AlterTable("DoubleFieldIndexRecord", table => table.CreateIndex("IX_FieldIndexPartRecord_Id", new string[] { "FieldIndexPartRecord_Id" }));
|
|
||||||
|
|
||||||
SchemaBuilder.AlterTable("DecimalFieldIndexRecord", table => table.CreateIndex("IX_PropertyName", new string[] { "PropertyName" }));
|
|
||||||
SchemaBuilder.AlterTable("DecimalFieldIndexRecord", table => table.CreateIndex("IX_FieldIndexPartRecord_Id", new string[] { "FieldIndexPartRecord_Id" }));
|
|
||||||
|
|
||||||
// Query
|
// Query
|
||||||
|
|
||||||
@ -287,7 +277,7 @@ namespace Orchard.Projections {
|
|||||||
Description = T("The text from the Body part").Text
|
Description = T("The text from the Body part").Text
|
||||||
});
|
});
|
||||||
|
|
||||||
return 6;
|
return 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int UpdateFrom1() {
|
public int UpdateFrom1() {
|
||||||
@ -343,17 +333,7 @@ namespace Orchard.Projections {
|
|||||||
.AddColumn<decimal>("LatestValue"));
|
.AddColumn<decimal>("LatestValue"));
|
||||||
|
|
||||||
//Adds indexes for better performances in queries
|
//Adds indexes for better performances in queries
|
||||||
SchemaBuilder.AlterTable("StringFieldIndexRecord", table => table.CreateIndex("IX_PropertyName", new string[] { "PropertyName" }));
|
AddPropertyNameAndFieldIndexPartRecordIdIndexes();
|
||||||
SchemaBuilder.AlterTable("StringFieldIndexRecord", table => table.CreateIndex("IX_FieldIndexPartRecord_Id", new string[] { "FieldIndexPartRecord_Id" }));
|
|
||||||
|
|
||||||
SchemaBuilder.AlterTable("IntegerFieldIndexRecord", table => table.CreateIndex("IX_PropertyName", new string[] { "PropertyName" }));
|
|
||||||
SchemaBuilder.AlterTable("IntegerFieldIndexRecord", table => table.CreateIndex("IX_FieldIndexPartRecord_Id", new string[] { "FieldIndexPartRecord_Id" }));
|
|
||||||
|
|
||||||
SchemaBuilder.AlterTable("DoubleFieldIndexRecord", table => table.CreateIndex("IX_PropertyName", new string[] { "PropertyName" }));
|
|
||||||
SchemaBuilder.AlterTable("DoubleFieldIndexRecord", table => table.CreateIndex("IX_FieldIndexPartRecord_Id", new string[] { "FieldIndexPartRecord_Id" }));
|
|
||||||
|
|
||||||
SchemaBuilder.AlterTable("DecimalFieldIndexRecord", table => table.CreateIndex("IX_PropertyName", new string[] { "PropertyName" }));
|
|
||||||
SchemaBuilder.AlterTable("DecimalFieldIndexRecord", table => table.CreateIndex("IX_FieldIndexPartRecord_Id", new string[] { "FieldIndexPartRecord_Id" }));
|
|
||||||
|
|
||||||
SchemaBuilder.AlterTable("QueryPartRecord", table => table
|
SchemaBuilder.AlterTable("QueryPartRecord", table => table
|
||||||
.AddColumn<string>("VersionScope", c => c.WithLength(15)));
|
.AddColumn<string>("VersionScope", c => c.WithLength(15)));
|
||||||
@ -386,5 +366,47 @@ namespace Orchard.Projections {
|
|||||||
|
|
||||||
return 7;
|
return 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int UpdateFrom7() {
|
||||||
|
SchemaBuilder.AlterTable("StringFieldIndexRecord", table => {
|
||||||
|
table.DropIndex("IX_PropertyName");
|
||||||
|
table.DropIndex("IX_FieldIndexPartRecord_Id");
|
||||||
|
});
|
||||||
|
SchemaBuilder.AlterTable("IntegerFieldIndexRecord", table => {
|
||||||
|
table.DropIndex("IX_PropertyName");
|
||||||
|
table.DropIndex("IX_FieldIndexPartRecord_Id");
|
||||||
|
});
|
||||||
|
SchemaBuilder.AlterTable("DoubleFieldIndexRecord", table => {
|
||||||
|
table.DropIndex("IX_PropertyName");
|
||||||
|
table.DropIndex("IX_FieldIndexPartRecord_Id");
|
||||||
|
});
|
||||||
|
SchemaBuilder.AlterTable("DecimalFieldIndexRecord", table => {
|
||||||
|
table.DropIndex("IX_PropertyName");
|
||||||
|
table.DropIndex("IX_FieldIndexPartRecord_Id");
|
||||||
|
});
|
||||||
|
|
||||||
|
AddPropertyNameAndFieldIndexPartRecordIdIndexes();
|
||||||
|
|
||||||
|
return 8;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void AddPropertyNameAndFieldIndexPartRecordIdIndexes() {
|
||||||
|
SchemaBuilder.AlterTable("StringFieldIndexRecord", table => {
|
||||||
|
table.CreateIndex("IDX_StringFieldIndexRecord_PropertyName", "PropertyName");
|
||||||
|
table.CreateIndex("IDX_StringFieldIndexRecord_FieldIndexPartRecord_Id", "FieldIndexPartRecord_Id");
|
||||||
|
});
|
||||||
|
SchemaBuilder.AlterTable("IntegerFieldIndexRecord", table => {
|
||||||
|
table.CreateIndex("IDX_IntegerFieldIndexRecord_PropertyName", "PropertyName");
|
||||||
|
table.CreateIndex("IDX_IntegerFieldIndexRecord_FieldIndexPartRecord_Id", "FieldIndexPartRecord_Id");
|
||||||
|
});
|
||||||
|
SchemaBuilder.AlterTable("DoubleFieldIndexRecord", table => {
|
||||||
|
table.CreateIndex("IDX_DoubleFieldIndexRecord_PropertyName", "PropertyName");
|
||||||
|
table.CreateIndex("IDX_DoubleFieldIndexRecord_FieldIndexPartRecord_Id", "FieldIndexPartRecord_Id");
|
||||||
|
});
|
||||||
|
SchemaBuilder.AlterTable("DecimalFieldIndexRecord", table => {
|
||||||
|
table.CreateIndex("IDX_DecimalFieldIndexRecord_PropertyName", "PropertyName");
|
||||||
|
table.CreateIndex("IDX_DecimalFieldIndexRecord_FieldIndexPartRecord_Id", "FieldIndexPartRecord_Id");
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user