Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit ac8cd58

Browse files
committed
Missed removal of string.Format call.
1 parent a33a528 commit ac8cd58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.OrmLite.SqlServer/SqlServerOrmLiteDialectProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public override string ToAddColumnStatement(Type modelType, FieldDefinition fiel
199199

200200
var modelName = GetQuotedTableName(GetModel(modelType).ModelName);
201201

202-
return string.Format($"ALTER TABLE {modelName} ADD {column};");
202+
return $"ALTER TABLE {modelName} ADD {column};";
203203
}
204204

205205
public override string ToAlterColumnStatement(Type modelType, FieldDefinition fieldDef)

0 commit comments

Comments
 (0)