using Microsoft.EntityFrameworkCore.Migrations; namespace NadekoBot.Migrations { public partial class weightedwarnings : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Weight", table: "Warnings", type: "INTEGER", nullable: false, defaultValue: 1); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Weight", table: "Warnings"); } } }