mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 00:52:49 -05:00
format
This commit is contained in:
@ -1,16 +1,14 @@
|
|||||||
using System;
|
using System.Data;
|
||||||
|
using DbUp.Engine;
|
||||||
using DbUp.Engine.Output;
|
using DbUp.Engine.Output;
|
||||||
using DbUp.Engine.Transactions;
|
using DbUp.Engine.Transactions;
|
||||||
using DbUp.Support;
|
|
||||||
using DbUp.Engine;
|
|
||||||
using System.Data;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using DbUp.SqlServer;
|
using DbUp.SqlServer;
|
||||||
|
using DbUp.Support;
|
||||||
|
|
||||||
namespace Bit.Migrator;
|
namespace Bit.Migrator;
|
||||||
|
|
||||||
public class RerunableSqlTableJournal : TableJournal
|
public class RerunableSqlTableJournal : TableJournal
|
||||||
{
|
{
|
||||||
|
|
||||||
public RerunableSqlTableJournal(Func<IConnectionManager> connectionManager, Func<IUpgradeLog> logger, string schema, string table)
|
public RerunableSqlTableJournal(Func<IConnectionManager> connectionManager, Func<IUpgradeLog> logger, string schema, string table)
|
||||||
: base(connectionManager, logger, new SqlServerObjectParser(), schema, table)
|
: base(connectionManager, logger, new SqlServerObjectParser(), schema, table)
|
||||||
@ -55,4 +53,4 @@ $@"create table {FqSchemaTableName} (
|
|||||||
[Applied] datetime not null
|
[Applied] datetime not null
|
||||||
)";
|
)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,4 @@
|
|||||||
using System;
|
using DbUp.Builder;
|
||||||
using System.Data;
|
|
||||||
using System.Data.SqlClient;
|
|
||||||
using DbUp;
|
|
||||||
using DbUp.Builder;
|
|
||||||
using DbUp.Engine.Output;
|
|
||||||
using DbUp.Engine.Transactions;
|
|
||||||
using DbUp.SqlServer;
|
|
||||||
|
|
||||||
namespace Bit.Migrator;
|
namespace Bit.Migrator;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user