using Microsoft.EntityFrameworkCore.Migrations; namespace HanyadikHetVan.Data.Migrations { public partial class AddPurseToContext : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Purses", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), UserId = table.Column(type: "nvarchar(450)", nullable: true), Balance = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Purses", x => x.Id); table.ForeignKey( name: "FK_Purses_AspNetUsers_UserId", column: x => x.UserId, principalTable: "AspNetUsers", principalColumn: "Id", onDelete: ReferentialAction.Restrict); }); migrationBuilder.CreateIndex( name: "IX_Purses_UserId", table: "Purses", column: "UserId"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "Purses"); } } }