Skip to content

Commit

Permalink
Fixed SQL Syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-schenk committed Apr 28, 2017
1 parent 091660c commit 355211d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dotMigrator.SqlServer/SingleTableJournal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ public void Open()
_setCompleteCommand = _connection.CreateCommand();
_setCompleteCommand.CommandType = CommandType.Text;
_setCompleteCommand.CommandText =
"UPDATE _DeployedScripts " +
" Complete = 1 " +
"UPDATE _DeployedScripts SET" +
" Complete = 1, " +
" CompletedTs = @CompletedTs " +
"WHERE Name = @Name";
_setCompleteCommand.Parameters.Add("@Name", SqlDbType.NVarChar, 260);
Expand Down

0 comments on commit 355211d

Please sign in to comment.