1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 00:52:49 -05:00
This commit is contained in:
Michal Checinski
2023-08-24 12:47:39 +02:00
parent 47f8555eab
commit c606efe2ab

View File

@ -50,7 +50,7 @@ public class RerunableSqlTableJournal : SqlTableJournal
return command;
}
protected override string GetInsertJournalEntrySql(string @scriptName, string @applied, string @rerrunable)
protected string GetInsertJournalEntrySql(string @scriptName, string @applied, string @rerrunable)
{
return $"insert into {FqSchemaTableName} (ScriptName, Applied, Rerunable) values ({@scriptName}, {@applied}, {@rerrunable})";
}