using System; using Microsoft.EntityFrameworkCore.Migrations; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace EllieBot.Migrations.PostgreSql { public partial class xpitemshop : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "xpshopowneditem", columns: table => new { id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), userid = table.Column(type: "numeric(20,0)", nullable: false), itemtype = table.Column(type: "integer", nullable: false), isusing = table.Column(type: "boolean", nullable: false), itemkey = table.Column(type: "text", nullable: false), dateadded = table.Column(type: "timestamp with time zone", nullable: true) }, constraints: table => { table.PrimaryKey("pk_xpshopowneditem", x => x.id); }); migrationBuilder.CreateIndex( name: "ix_xpshopowneditem_userid_itemtype_itemkey", table: "xpshopowneditem", columns: new[] { "userid", "itemtype", "itemkey" }, unique: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "xpshopowneditem"); } } }