summaryrefslogtreecommitdiff
path: root/Migrations
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-11-23 17:55:28 -0600
committerHombreLaser <sebastian-440@live.com>2022-11-23 17:55:28 -0600
commite1c7efd99f631ab297f75c6aef041ec2cd884327 (patch)
tree7b952c721b62c6f49ccb974f471678d8a737d199 /Migrations
parent17b13d82dd0cd4ceba513d3354ade9420528e7bf (diff)
Corregida columna useraccountid en ticket
Diffstat (limited to 'Migrations')
-rw-r--r--Migrations/20221123010744_FixUserAccountIdColumn.Designer.cs367
-rw-r--r--Migrations/20221123010744_FixUserAccountIdColumn.cs85
-rw-r--r--Migrations/ApplicationDbContextModelSnapshot.cs22
3 files changed, 463 insertions, 11 deletions
diff --git a/Migrations/20221123010744_FixUserAccountIdColumn.Designer.cs b/Migrations/20221123010744_FixUserAccountIdColumn.Designer.cs
new file mode 100644
index 0000000..b167a02
--- /dev/null
+++ b/Migrations/20221123010744_FixUserAccountIdColumn.Designer.cs
@@ -0,0 +1,367 @@
+// <auto-generated />
+using System;
+using BackendPIA.Models;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Migrations;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
+
+#nullable disable
+
+namespace BackendPIA.Migrations
+{
+ [DbContext(typeof(ApplicationDbContext))]
+ [Migration("20221123010744_FixUserAccountIdColumn")]
+ partial class FixUserAccountIdColumn
+ {
+ /// <inheritdoc />
+ protected override void BuildTargetModel(ModelBuilder modelBuilder)
+ {
+#pragma warning disable 612, 618
+ modelBuilder
+ .HasAnnotation("ProductVersion", "7.0.0")
+ .HasAnnotation("Relational:MaxIdentifierLength", 63);
+
+ NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
+
+ modelBuilder.Entity("BackendPIA.Models.Raffle", b =>
+ {
+ b.Property<long>("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("bigint");
+
+ NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<long>("Id"));
+
+ b.Property<bool>("IsClosed")
+ .HasColumnType("boolean");
+
+ b.Property<string>("Name")
+ .IsRequired()
+ .HasMaxLength(128)
+ .HasColumnType("character varying(128)");
+
+ b.Property<int>("Winners")
+ .HasColumnType("integer");
+
+ b.HasKey("Id");
+
+ b.ToTable("Raffles");
+ });
+
+ modelBuilder.Entity("BackendPIA.Models.Ticket", b =>
+ {
+ b.Property<long>("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("bigint");
+
+ NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<long>("Id"));
+
+ b.Property<bool>("IsWinner")
+ .HasColumnType("boolean");
+
+ b.Property<int>("Number")
+ .HasColumnType("integer");
+
+ b.Property<long>("RaffleId")
+ .HasColumnType("bigint");
+
+ b.Property<string>("UserAccountId")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.HasKey("Id");
+
+ b.HasIndex("RaffleId");
+
+ b.HasIndex("UserAccountId");
+
+ b.ToTable("Tickets");
+ });
+
+ modelBuilder.Entity("BackendPIA.Models.UserAccount", b =>
+ {
+ b.Property<string>("Id")
+ .HasColumnType("text");
+
+ b.Property<int>("AccessFailedCount")
+ .HasColumnType("integer");
+
+ b.Property<string>("ConcurrencyStamp")
+ .IsConcurrencyToken()
+ .HasColumnType("text");
+
+ b.Property<string>("Email")
+ .HasMaxLength(256)
+ .HasColumnType("character varying(256)");
+
+ b.Property<bool>("EmailConfirmed")
+ .HasColumnType("boolean");
+
+ b.Property<bool>("LockoutEnabled")
+ .HasColumnType("boolean");
+
+ b.Property<DateTimeOffset?>("LockoutEnd")
+ .HasColumnType("timestamp with time zone");
+
+ b.Property<string>("NormalizedEmail")
+ .HasMaxLength(256)
+ .HasColumnType("character varying(256)");
+
+ b.Property<string>("NormalizedUserName")
+ .HasMaxLength(256)
+ .HasColumnType("character varying(256)");
+
+ b.Property<string>("PasswordHash")
+ .HasColumnType("text");
+
+ b.Property<string>("PhoneNumber")
+ .HasColumnType("text");
+
+ b.Property<bool>("PhoneNumberConfirmed")
+ .HasColumnType("boolean");
+
+ b.Property<string>("SecurityStamp")
+ .HasColumnType("text");
+
+ b.Property<string>("SessionToken")
+ .HasMaxLength(64)
+ .HasColumnType("character varying(64)");
+
+ b.Property<DateTime?>("SessionTokenExpiryTime")
+ .HasColumnType("timestamp with time zone");
+
+ b.Property<bool>("TwoFactorEnabled")
+ .HasColumnType("boolean");
+
+ b.Property<string>("UserName")
+ .HasMaxLength(256)
+ .HasColumnType("character varying(256)");
+
+ b.HasKey("Id");
+
+ b.HasIndex("NormalizedEmail")
+ .HasDatabaseName("EmailIndex");
+
+ b.HasIndex("NormalizedUserName")
+ .IsUnique()
+ .HasDatabaseName("UserNameIndex");
+
+ b.ToTable("AspNetUsers", (string)null);
+ });
+
+ modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b =>
+ {
+ b.Property<string>("Id")
+ .HasColumnType("text");
+
+ b.Property<string>("ConcurrencyStamp")
+ .IsConcurrencyToken()
+ .HasColumnType("text");
+
+ b.Property<string>("Name")
+ .HasMaxLength(256)
+ .HasColumnType("character varying(256)");
+
+ b.Property<string>("NormalizedName")
+ .HasMaxLength(256)
+ .HasColumnType("character varying(256)");
+
+ b.HasKey("Id");
+
+ b.HasIndex("NormalizedName")
+ .IsUnique()
+ .HasDatabaseName("RoleNameIndex");
+
+ b.ToTable("AspNetRoles", (string)null);
+ });
+
+ modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
+ {
+ b.Property<int>("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
+
+ b.Property<string>("ClaimType")
+ .HasColumnType("text");
+
+ b.Property<string>("ClaimValue")
+ .HasColumnType("text");
+
+ b.Property<string>("RoleId")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.HasKey("Id");
+
+ b.HasIndex("RoleId");
+
+ b.ToTable("AspNetRoleClaims", (string)null);
+ });
+
+ modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
+ {
+ b.Property<int>("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer");
+
+ NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
+
+ b.Property<string>("ClaimType")
+ .HasColumnType("text");
+
+ b.Property<string>("ClaimValue")
+ .HasColumnType("text");
+
+ b.Property<string>("UserId")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.HasKey("Id");
+
+ b.HasIndex("UserId");
+
+ b.ToTable("AspNetUserClaims", (string)null);
+ });
+
+ modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
+ {
+ b.Property<string>("LoginProvider")
+ .HasColumnType("text");
+
+ b.Property<string>("ProviderKey")
+ .HasColumnType("text");
+
+ b.Property<string>("ProviderDisplayName")
+ .HasColumnType("text");
+
+ b.Property<string>("UserId")
+ .IsRequired()
+ .HasColumnType("text");
+
+ b.HasKey("LoginProvider", "ProviderKey");
+
+ b.HasIndex("UserId");
+
+ b.ToTable("AspNetUserLogins", (string)null);
+ });
+
+ modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
+ {
+ b.Property<string>("UserId")
+ .HasColumnType("text");
+
+ b.Property<string>("RoleId")
+ .HasColumnType("text");
+
+ b.HasKey("UserId", "RoleId");
+
+ b.HasIndex("RoleId");
+
+ b.ToTable("AspNetUserRoles", (string)null);
+ });
+
+ modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
+ {
+ b.Property<string>("UserId")
+ .HasColumnType("text");
+
+ b.Property<string>("LoginProvider")
+ .HasColumnType("text");
+
+ b.Property<string>("Name")
+ .HasColumnType("text");
+
+ b.Property<string>("Value")
+ .HasColumnType("text");
+
+ b.HasKey("UserId", "LoginProvider", "Name");
+
+ b.ToTable("AspNetUserTokens", (string)null);
+ });
+
+ modelBuilder.Entity("BackendPIA.Models.Ticket", b =>
+ {
+ b.HasOne("BackendPIA.Models.Raffle", "Raffle")
+ .WithMany("Tickets")
+ .HasForeignKey("RaffleId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.HasOne("BackendPIA.Models.UserAccount", "Owner")
+ .WithMany("Tickets")
+ .HasForeignKey("UserAccountId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Owner");
+
+ b.Navigation("Raffle");
+ });
+
+ modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
+ {
+ b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
+ .WithMany()
+ .HasForeignKey("RoleId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+ });
+
+ modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
+ {
+ b.HasOne("BackendPIA.Models.UserAccount", null)
+ .WithMany()
+ .HasForeignKey("UserId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+ });
+
+ modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
+ {
+ b.HasOne("BackendPIA.Models.UserAccount", null)
+ .WithMany()
+ .HasForeignKey("UserId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+ });
+
+ modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
+ {
+ b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
+ .WithMany()
+ .HasForeignKey("RoleId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.HasOne("BackendPIA.Models.UserAccount", null)
+ .WithMany()
+ .HasForeignKey("UserId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+ });
+
+ modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
+ {
+ b.HasOne("BackendPIA.Models.UserAccount", null)
+ .WithMany()
+ .HasForeignKey("UserId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+ });
+
+ modelBuilder.Entity("BackendPIA.Models.Raffle", b =>
+ {
+ b.Navigation("Tickets");
+ });
+
+ modelBuilder.Entity("BackendPIA.Models.UserAccount", b =>
+ {
+ b.Navigation("Tickets");
+ });
+#pragma warning restore 612, 618
+ }
+ }
+}
diff --git a/Migrations/20221123010744_FixUserAccountIdColumn.cs b/Migrations/20221123010744_FixUserAccountIdColumn.cs
new file mode 100644
index 0000000..e0c1e1a
--- /dev/null
+++ b/Migrations/20221123010744_FixUserAccountIdColumn.cs
@@ -0,0 +1,85 @@
+using Microsoft.EntityFrameworkCore.Migrations;
+
+#nullable disable
+
+namespace BackendPIA.Migrations
+{
+ /// <inheritdoc />
+ public partial class FixUserAccountIdColumn : Migration
+ {
+ /// <inheritdoc />
+ protected override void Up(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.DropForeignKey(
+ name: "FK_Tickets_AspNetUsers_OwnerId",
+ table: "Tickets");
+
+ migrationBuilder.DropIndex(
+ name: "IX_Tickets_OwnerId",
+ table: "Tickets");
+
+ migrationBuilder.DropColumn(
+ name: "OwnerId",
+ table: "Tickets");
+
+ migrationBuilder.AlterColumn<string>(
+ name: "UserAccountId",
+ table: "Tickets",
+ type: "text",
+ nullable: false,
+ oldClrType: typeof(long),
+ oldType: "bigint");
+
+ migrationBuilder.CreateIndex(
+ name: "IX_Tickets_UserAccountId",
+ table: "Tickets",
+ column: "UserAccountId");
+
+ migrationBuilder.AddForeignKey(
+ name: "FK_Tickets_AspNetUsers_UserAccountId",
+ table: "Tickets",
+ column: "UserAccountId",
+ principalTable: "AspNetUsers",
+ principalColumn: "Id",
+ onDelete: ReferentialAction.Cascade);
+ }
+
+ /// <inheritdoc />
+ protected override void Down(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.DropForeignKey(
+ name: "FK_Tickets_AspNetUsers_UserAccountId",
+ table: "Tickets");
+
+ migrationBuilder.DropIndex(
+ name: "IX_Tickets_UserAccountId",
+ table: "Tickets");
+
+ migrationBuilder.AlterColumn<long>(
+ name: "UserAccountId",
+ table: "Tickets",
+ type: "bigint",
+ nullable: false,
+ oldClrType: typeof(string),
+ oldType: "text");
+
+ migrationBuilder.AddColumn<string>(
+ name: "OwnerId",
+ table: "Tickets",
+ type: "text",
+ nullable: true);
+
+ migrationBuilder.CreateIndex(
+ name: "IX_Tickets_OwnerId",
+ table: "Tickets",
+ column: "OwnerId");
+
+ migrationBuilder.AddForeignKey(
+ name: "FK_Tickets_AspNetUsers_OwnerId",
+ table: "Tickets",
+ column: "OwnerId",
+ principalTable: "AspNetUsers",
+ principalColumn: "Id");
+ }
+ }
+}
diff --git a/Migrations/ApplicationDbContextModelSnapshot.cs b/Migrations/ApplicationDbContextModelSnapshot.cs
index 556a52f..a0d5dfa 100644
--- a/Migrations/ApplicationDbContextModelSnapshot.cs
+++ b/Migrations/ApplicationDbContextModelSnapshot.cs
@@ -60,21 +60,19 @@ namespace BackendPIA.Migrations
b.Property<int>("Number")
.HasColumnType("integer");
- b.Property<string>("OwnerId")
- .HasColumnType("text");
-
b.Property<long>("RaffleId")
.HasColumnType("bigint");
- b.Property<long>("UserAccountId")
- .HasColumnType("bigint");
+ b.Property<string>("UserAccountId")
+ .IsRequired()
+ .HasColumnType("text");
b.HasKey("Id");
- b.HasIndex("OwnerId");
-
b.HasIndex("RaffleId");
+ b.HasIndex("UserAccountId");
+
b.ToTable("Tickets");
});
@@ -283,16 +281,18 @@ namespace BackendPIA.Migrations
modelBuilder.Entity("BackendPIA.Models.Ticket", b =>
{
- b.HasOne("BackendPIA.Models.UserAccount", "Owner")
- .WithMany("Tickets")
- .HasForeignKey("OwnerId");
-
b.HasOne("BackendPIA.Models.Raffle", "Raffle")
.WithMany("Tickets")
.HasForeignKey("RaffleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
+ b.HasOne("BackendPIA.Models.UserAccount", "Owner")
+ .WithMany("Tickets")
+ .HasForeignKey("UserAccountId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
b.Navigation("Owner");
b.Navigation("Raffle");