-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5403 from dfe-analytical-services/EES-5660-replac…
…e-versioned-draft-folder-with-static-folder Ees 5660 replace versioned draft folder with static folder
- Loading branch information
Showing
27 changed files
with
606 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
src/GovUk.Education.ExploreEducationStatistics.Admin/Migrations/Custom/ICustomMigration.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/GovUk.Education.ExploreEducationStatistics.Common/Database/ICustomMigration.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace GovUk.Education.ExploreEducationStatistics.Common.Database; | ||
|
||
/// <summary> | ||
/// Custom migrations that run on deployment / startup. | ||
/// These differ in use from EF database migrations in that they are not limited | ||
/// to running against a single database / DbContext. These can be simple | ||
/// standalone implementations or can use dependency injection if registered | ||
/// with a DI container. | ||
/// </summary> | ||
public interface ICustomMigration | ||
{ | ||
void Apply(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.