using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace NetinaShop.Repository.Migrations { /// public partial class EditOrderUserId : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_Orders_Users_UserId", schema: "public", table: "Orders"); migrationBuilder.DropColumn( name: "DeviceId", schema: "public", table: "Orders"); migrationBuilder.AlterColumn( name: "UserId", schema: "public", table: "Orders", type: "uuid", nullable: false, defaultValue: new Guid("00000000-0000-0000-0000-000000000000"), oldClrType: typeof(Guid), oldType: "uuid", oldNullable: true); migrationBuilder.AddForeignKey( name: "FK_Orders_Users_UserId", schema: "public", table: "Orders", column: "UserId", principalSchema: "public", principalTable: "Users", principalColumn: "Id", onDelete: ReferentialAction.Restrict); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_Orders_Users_UserId", schema: "public", table: "Orders"); migrationBuilder.AlterColumn( name: "UserId", schema: "public", table: "Orders", type: "uuid", nullable: true, oldClrType: typeof(Guid), oldType: "uuid"); migrationBuilder.AddColumn( name: "DeviceId", schema: "public", table: "Orders", type: "text", nullable: false, defaultValue: ""); migrationBuilder.AddForeignKey( name: "FK_Orders_Users_UserId", schema: "public", table: "Orders", column: "UserId", principalSchema: "public", principalTable: "Users", principalColumn: "Id"); } } }