From 214cd4db690635ba2a30183c1679c3e4d7b8e896 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Tue, 22 Nov 2022 16:46:46 -0600 Subject: Añadido modelo de ticket MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Migrations/20221122224441_AddTicket.cs | 60 ++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 Migrations/20221122224441_AddTicket.cs (limited to 'Migrations/20221122224441_AddTicket.cs') diff --git a/Migrations/20221122224441_AddTicket.cs b/Migrations/20221122224441_AddTicket.cs new file mode 100644 index 0000000..d74f927 --- /dev/null +++ b/Migrations/20221122224441_AddTicket.cs @@ -0,0 +1,60 @@ +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"); + } + } +} -- cgit v1.2.3