CircleAuthorizationToFile EF migration
All checks were successful
Dotnet build and test / build (pull_request) Successful in 6m15s

This commit is contained in:
Paul Schneider 2026-09-07 11:02:41 +01:00
commit 38bc659a58
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
7 changed files with 4950 additions and 11 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,52 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Yavsc.Migrations
{
/// <inheritdoc />
public partial class fileACL : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "CircleAuthorizationToFile",
columns: table => new
{
CircleId = table.Column<long>(type: "bigint", nullable: false),
Path = table.Column<string>(type: "text", nullable: false),
OwnerId = table.Column<string>(type: "text", nullable: false),
Access = table.Column<byte>(type: "smallint", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_CircleAuthorizationToFile", x => new { x.CircleId, x.Path, x.OwnerId });
table.ForeignKey(
name: "FK_CircleAuthorizationToFile_AspNetUsers_OwnerId",
column: x => x.OwnerId,
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_CircleAuthorizationToFile_Circle_CircleId",
column: x => x.CircleId,
principalTable: "Circle",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_CircleAuthorizationToFile_OwnerId",
table: "CircleAuthorizationToFile",
column: "OwnerId");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "CircleAuthorizationToFile");
}
}
}

View file

@ -1088,6 +1088,27 @@ namespace Yavsc.Migrations
b.ToTable("CircleAuthorizationToBlogPost");
});
modelBuilder.Entity("Yavsc.Models.Access.CircleAuthorizationToFile", b =>
{
b.Property<long>("CircleId")
.HasColumnType("bigint");
b.Property<string>("Path")
.HasColumnType("text");
b.Property<string>("OwnerId")
.HasColumnType("text");
b.Property<byte>("Access")
.HasColumnType("smallint");
b.HasKey("CircleId", "Path", "OwnerId");
b.HasIndex("OwnerId");
b.ToTable("CircleAuthorizationToFile");
});
modelBuilder.Entity("Yavsc.Models.AccountBalance", b =>
{
b.Property<string>("UserId")
@ -3767,6 +3788,25 @@ namespace Yavsc.Migrations
b.Navigation("Target");
});
modelBuilder.Entity("Yavsc.Models.Access.CircleAuthorizationToFile", b =>
{
b.HasOne("Yavsc.Models.Relationship.Circle", "Allowed")
.WithMany()
.HasForeignKey("CircleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Yavsc.Models.ApplicationUser", "Owner")
.WithMany()
.HasForeignKey("OwnerId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Allowed");
b.Navigation("Owner");
});
modelBuilder.Entity("Yavsc.Models.AccountBalance", b =>
{
b.HasOne("Yavsc.Models.ApplicationUser", "Owner")