using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ZB.MOM.WW.OtOpcUa.Configuration.Migrations { /// public partial class AddLdapGroupRoleMapping : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "LdapGroupRoleMapping", columns: table => new { Id = table.Column(type: "uniqueidentifier", nullable: false), LdapGroup = table.Column(type: "nvarchar(512)", maxLength: 512, nullable: false), Role = table.Column(type: "nvarchar(32)", maxLength: 32, nullable: false), ClusterId = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: true), IsSystemWide = table.Column(type: "bit", nullable: false), CreatedAtUtc = table.Column(type: "datetime2(3)", nullable: false), Notes = table.Column(type: "nvarchar(512)", maxLength: 512, nullable: true) }, constraints: table => { table.PrimaryKey("PK_LdapGroupRoleMapping", x => x.Id); table.ForeignKey( name: "FK_LdapGroupRoleMapping_ServerCluster_ClusterId", column: x => x.ClusterId, principalTable: "ServerCluster", principalColumn: "ClusterId", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "IX_LdapGroupRoleMapping_ClusterId", table: "LdapGroupRoleMapping", column: "ClusterId"); migrationBuilder.CreateIndex( name: "IX_LdapGroupRoleMapping_Group", table: "LdapGroupRoleMapping", column: "LdapGroup"); migrationBuilder.CreateIndex( name: "UX_LdapGroupRoleMapping_Group_Cluster", table: "LdapGroupRoleMapping", columns: new[] { "LdapGroup", "ClusterId" }, unique: true, filter: "[ClusterId] IS NOT NULL"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "LdapGroupRoleMapping"); } } }