mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Update DefaultDataMigrationInterpreter.cs
Remove incorrect plus characters that break the compilation
This commit is contained in:
@@ -271,8 +271,8 @@ namespace Orchard.Data.Migration.Interpreters {
|
||||
var builder = new StringBuilder();
|
||||
|
||||
builder.Append("alter table ")
|
||||
+ .Append(_dialectLazy.Value.QuoteForTableName(PrefixTableName(command.SrcTable)))
|
||||
+ .Append(_dialectLazy.Value.GetDropForeignKeyConstraintString(PrefixTableName(command.Name)));
|
||||
.Append(_dialectLazy.Value.QuoteForTableName(PrefixTableName(command.SrcTable)))
|
||||
.Append(_dialectLazy.Value.GetDropForeignKeyConstraintString(PrefixTableName(command.Name)));
|
||||
_sqlStatements.Add(builder.ToString());
|
||||
|
||||
RunPendingStatements();
|
||||
|
Reference in New Issue
Block a user