using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; namespace ReallifeGamemode.Database.Migrations { public partial class ShopItems : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "ShopItems", columns: table => new { Id = table.Column(nullable: false) .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), ShopId = table.Column(nullable: false), ItemId = table.Column(nullable: false), Amount = table.Column(nullable: false), Price = table.Column(nullable: false) }, constraints: table => { table.PrimaryKey("PK_ShopItems", x => x.Id); }); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "ShopItems"); } } }