Skip to content

Commit

Permalink
Merge pull request #497 from DFE-Digital/feature/sharepoint-files-in-…
Browse files Browse the repository at this point in the history
…prepare

Feature/sharepoint files in prepare
  • Loading branch information
paullocknimble authored Jun 10, 2024
2 parents 270d03d + 9dafc4d commit d2beb4b
Show file tree
Hide file tree
Showing 10 changed files with 4,210 additions and 19 deletions.

Large diffs are not rendered by default.

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");
}
}
}
Loading

0 comments on commit d2beb4b

Please sign in to comment.