-
Notifications
You must be signed in to change notification settings - Fork 0
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 #537 from DFE-Digital/feature/173335-grouping-proj…
…ects Split Set Project Group endpoint into Assign user and update Project Group's Conversion Project Endpoints
- Loading branch information
Showing
42 changed files
with
3,162 additions
and
394 deletions.
There are no files selected for viewing
2,301 changes: 2,301 additions & 0 deletions
2,301
...s.Academisation.Data/Migrations/20240801113238_add-project-group-extra-fields.Designer.cs
Large diffs are not rendered by default.
Oops, something went wrong.
44 changes: 44 additions & 0 deletions
44
Dfe.Academies.Academisation.Data/Migrations/20240801113238_add-project-group-extra-fields.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,44 @@ | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
||
namespace Dfe.Academies.Academisation.Data.Migrations | ||
{ | ||
/// <inheritdoc /> | ||
public partial class addprojectgroupextrafields : Migration | ||
{ | ||
/// <inheritdoc /> | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.AddColumn<string>( | ||
name: "TrustName", | ||
schema: "academisation", | ||
table: "ProjectGroups", | ||
type: "nvarchar(max)", | ||
nullable: false, | ||
defaultValue: ""); | ||
|
||
migrationBuilder.AddColumn<string>( | ||
name: "TrustUkprn", | ||
schema: "academisation", | ||
table: "ProjectGroups", | ||
type: "nvarchar(max)", | ||
nullable: false, | ||
defaultValue: ""); | ||
} | ||
|
||
/// <inheritdoc /> | ||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.DropColumn( | ||
name: "TrustName", | ||
schema: "academisation", | ||
table: "ProjectGroups"); | ||
|
||
migrationBuilder.DropColumn( | ||
name: "TrustUkprn", | ||
schema: "academisation", | ||
table: "ProjectGroups"); | ||
} | ||
} | ||
} |
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
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
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
Oops, something went wrong.