mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
9 lines
281 B
C#
9 lines
281 B
C#
|
namespace Bit.Migrator;
|
|||
|
|
|||
|
public static class MigratorConstants
|
|||
|
{
|
|||
|
public const string SqlTableJournalName = "Migration";
|
|||
|
public const string DefaultMigrationsFolderName = "DbScripts";
|
|||
|
public const string TransitionMigrationsFolderName = "DbScripts_data_migration";
|
|||
|
}
|