1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 17:42:49 -05:00

Remove CreateSchemaTableSql as it'll be migrated using migration

This commit is contained in:
Michal Checinski
2023-08-31 15:46:59 +02:00
parent 82c17425a1
commit 928179ebe8

View File

@ -89,15 +89,4 @@ public class RerunableSqlTableJournal : SqlTableJournal
EXECUTE sp_executesql @SQLString";
}
protected override string CreateSchemaTableSql(string quotedPrimaryKeyName)
{
return
$@"create table {FqSchemaTableName} (
[Id] int identity(1,1) not null constraint {quotedPrimaryKeyName} primary key,
[ScriptName] nvarchar(255) not null,
[Applied] datetime not null,
[Rerunable] bit not null DEFAULT 0
)";
}
}