using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace EllieBot.Migrations.PostgreSql { /// public partial class honeypot : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "honeypotchannels", columns: table => new { guildid = table.Column(type: "numeric(20,0)", nullable: false), channelid = table.Column(type: "numeric(20,0)", nullable: false) }, constraints: table => { table.PrimaryKey("pk_honeypotchannels", x => x.guildid); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "honeypotchannels"); } } }