mirror of
https://github.com/bitwarden/server
synced 2025-12-06 00:03:34 +00:00
* Document database projects and complete EDD support * Remove an old remnant of a now-unused 'future' state * Sync finalization scripts * Fix conflict * Fix some script issues
9 lines
277 B
C#
9 lines
277 B
C#
namespace Bit.Migrator;
|
|
|
|
public static class MigratorConstants
|
|
{
|
|
public const string SqlTableJournalName = "Migration";
|
|
public const string DefaultMigrationsFolderName = "DbScripts";
|
|
public const string TransitionMigrationsFolderName = "DbScripts_transition";
|
|
}
|