using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace EntKube.Web.Data.Migrations.Postgres { /// public partial class AddStorageBindings : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "StorageBindings", columns: table => new { Id = table.Column(type: "uuid", nullable: false), StorageLinkId = table.Column(type: "uuid", nullable: false), AppDeploymentId = table.Column(type: "uuid", nullable: true), ComponentId = table.Column(type: "uuid", nullable: true), KubernetesSecretName = table.Column(type: "character varying(253)", maxLength: 253, nullable: false), SyncEnabled = table.Column(type: "boolean", nullable: false), LastSyncedAt = table.Column(type: "timestamp with time zone", nullable: true), CreatedAt = table.Column(type: "timestamp with time zone", nullable: false) }, constraints: table => { table.PrimaryKey("PK_StorageBindings", x => x.Id); table.ForeignKey( name: "FK_StorageBindings_AppDeployments_AppDeploymentId", column: x => x.AppDeploymentId, principalTable: "AppDeployments", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_StorageBindings_ClusterComponents_ComponentId", column: x => x.ComponentId, principalTable: "ClusterComponents", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_StorageBindings_StorageLinks_StorageLinkId", column: x => x.StorageLinkId, principalTable: "StorageLinks", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "IX_StorageBindings_AppDeploymentId", table: "StorageBindings", column: "AppDeploymentId"); migrationBuilder.CreateIndex( name: "IX_StorageBindings_ComponentId", table: "StorageBindings", column: "ComponentId"); migrationBuilder.CreateIndex( name: "IX_StorageBindings_StorageLinkId", table: "StorageBindings", column: "StorageLinkId"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "StorageBindings"); } } }