using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace KfChatDotNetBot.Migrations { /// public partial class Howlgg : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "HowlggBets", columns: table => new { Id = table.Column(type: "INTEGER", nullable: false) .Annotation("Sqlite:Autoincrement", true), UserId = table.Column(type: "INTEGER", nullable: false), BetId = table.Column(type: "INTEGER", nullable: false), GameId = table.Column(type: "INTEGER", nullable: false), Bet = table.Column(type: "INTEGER", nullable: false), Profit = table.Column(type: "INTEGER", nullable: false), Date = table.Column(type: "TEXT", nullable: false), Game = table.Column(type: "TEXT", nullable: false) }, constraints: table => { table.PrimaryKey("PK_HowlggBets", x => x.Id); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "HowlggBets"); } } }