-
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 #497 from DFE-Digital/feature/sharepoint-files-in-…
…prepare Feature/sharepoint files in prepare
- Loading branch information
Showing
10 changed files
with
4,210 additions
and
19 deletions.
There are no files selected for viewing
2,048 changes: 2,048 additions & 0 deletions
2,048
Dfe.Academies.Academisation.Data/Migrations/20240523110821_add-shareppoint-id.Designer.cs
Large diffs are not rendered by default.
Oops, something went wrong.
31 changes: 31 additions & 0 deletions
31
Dfe.Academies.Academisation.Data/Migrations/20240523110821_add-shareppoint-id.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,31 @@ | ||
using System; | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
||
namespace Dfe.Academies.Academisation.Data.Migrations | ||
{ | ||
/// <inheritdoc /> | ||
public partial class addshareppointid : Migration | ||
{ | ||
/// <inheritdoc /> | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.AddColumn<Guid>( | ||
name: "SharePointId", | ||
schema: "academisation", | ||
table: "Project", | ||
type: "uniqueidentifier", | ||
nullable: true); | ||
} | ||
|
||
/// <inheritdoc /> | ||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.DropColumn( | ||
name: "SharePointId", | ||
schema: "academisation", | ||
table: "Project"); | ||
} | ||
} | ||
} |
Oops, something went wrong.