using Microsoft.EntityFrameworkCore.Migrations; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace BackendPIA.Migrations { /// public partial class AddTicket : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Tickets", columns: table => new { Id = table.Column(type: "bigint", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), Number = table.Column(type: "integer", nullable: false), IsWinner = table.Column(type: "boolean", nullable: false), UserAccountId = table.Column(type: "bigint", nullable: false), RaffleId = table.Column(type: "bigint", nullable: false), OwnerId = table.Column(type: "text", nullable: true) }, constraints: table => { table.PrimaryKey("PK_Tickets", x => x.Id); table.ForeignKey( name: "FK_Tickets_AspNetUsers_OwnerId", column: x => x.OwnerId, principalTable: "AspNetUsers", principalColumn: "Id"); table.ForeignKey( name: "FK_Tickets_Raffles_RaffleId", column: x => x.RaffleId, principalTable: "Raffles", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "IX_Tickets_OwnerId", table: "Tickets", column: "OwnerId"); migrationBuilder.CreateIndex( name: "IX_Tickets_RaffleId", table: "Tickets", column: "RaffleId"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "Tickets"); } } }