initial commit
This commit is contained in:
116
Migrations/20250201022754_InitialCreate.Designer.cs
generated
Normal file
116
Migrations/20250201022754_InitialCreate.Designer.cs
generated
Normal file
@@ -0,0 +1,116 @@
|
||||
// <auto-generated />
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
using pet_companion_api.Data;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace pet_companion_api.Migrations
|
||||
{
|
||||
[DbContext(typeof(ApplicationDbContext))]
|
||||
[Migration("20250201022754_InitialCreate")]
|
||||
partial class InitialCreate
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder.HasAnnotation("ProductVersion", "9.0.1");
|
||||
|
||||
modelBuilder.Entity("pet_companion_api.Models.Pet", b =>
|
||||
{
|
||||
b.Property<string>("Id")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<int>("Class")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("Level")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<string>("Name")
|
||||
.IsRequired()
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("UserId")
|
||||
.IsRequired()
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Pets");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("pet_companion_api.Models.PetStats", b =>
|
||||
{
|
||||
b.Property<string>("PetId")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<int>("Charisma")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("Intelligence")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("Strength")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.HasKey("PetId");
|
||||
|
||||
b.ToTable("PetStats");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("pet_companion_api.Models.Resources", b =>
|
||||
{
|
||||
b.Property<string>("PetId")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<int>("Food")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("Gold")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("Junk")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("Wisdom")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.HasKey("PetId");
|
||||
|
||||
b.ToTable("Resources");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("pet_companion_api.Models.PetStats", b =>
|
||||
{
|
||||
b.HasOne("pet_companion_api.Models.Pet", null)
|
||||
.WithOne("Stats")
|
||||
.HasForeignKey("pet_companion_api.Models.PetStats", "PetId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
});
|
||||
|
||||
modelBuilder.Entity("pet_companion_api.Models.Resources", b =>
|
||||
{
|
||||
b.HasOne("pet_companion_api.Models.Pet", null)
|
||||
.WithOne("Resources")
|
||||
.HasForeignKey("pet_companion_api.Models.Resources", "PetId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
});
|
||||
|
||||
modelBuilder.Entity("pet_companion_api.Models.Pet", b =>
|
||||
{
|
||||
b.Navigation("Resources")
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Stats")
|
||||
.IsRequired();
|
||||
});
|
||||
#pragma warning restore 612, 618
|
||||
}
|
||||
}
|
||||
}
|
83
Migrations/20250201022754_InitialCreate.cs
Normal file
83
Migrations/20250201022754_InitialCreate.cs
Normal file
@@ -0,0 +1,83 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace pet_companion_api.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class InitialCreate : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Pets",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<string>(type: "TEXT", nullable: false),
|
||||
Name = table.Column<string>(type: "TEXT", nullable: false),
|
||||
Class = table.Column<int>(type: "INTEGER", nullable: false),
|
||||
Level = table.Column<int>(type: "INTEGER", nullable: false),
|
||||
UserId = table.Column<string>(type: "TEXT", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Pets", x => x.Id);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "PetStats",
|
||||
columns: table => new
|
||||
{
|
||||
PetId = table.Column<string>(type: "TEXT", nullable: false),
|
||||
Intelligence = table.Column<int>(type: "INTEGER", nullable: false),
|
||||
Strength = table.Column<int>(type: "INTEGER", nullable: false),
|
||||
Charisma = table.Column<int>(type: "INTEGER", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_PetStats", x => x.PetId);
|
||||
table.ForeignKey(
|
||||
name: "FK_PetStats_Pets_PetId",
|
||||
column: x => x.PetId,
|
||||
principalTable: "Pets",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "Resources",
|
||||
columns: table => new
|
||||
{
|
||||
PetId = table.Column<string>(type: "TEXT", nullable: false),
|
||||
Wisdom = table.Column<int>(type: "INTEGER", nullable: false),
|
||||
Gold = table.Column<int>(type: "INTEGER", nullable: false),
|
||||
Food = table.Column<int>(type: "INTEGER", nullable: false),
|
||||
Junk = table.Column<int>(type: "INTEGER", nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Resources", x => x.PetId);
|
||||
table.ForeignKey(
|
||||
name: "FK_Resources_Pets_PetId",
|
||||
column: x => x.PetId,
|
||||
principalTable: "Pets",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropTable(
|
||||
name: "PetStats");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Resources");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "Pets");
|
||||
}
|
||||
}
|
||||
}
|
113
Migrations/ApplicationDbContextModelSnapshot.cs
Normal file
113
Migrations/ApplicationDbContextModelSnapshot.cs
Normal file
@@ -0,0 +1,113 @@
|
||||
// <auto-generated />
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
using pet_companion_api.Data;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace pet_companion_api.Migrations
|
||||
{
|
||||
[DbContext(typeof(ApplicationDbContext))]
|
||||
partial class ApplicationDbContextModelSnapshot : ModelSnapshot
|
||||
{
|
||||
protected override void BuildModel(ModelBuilder modelBuilder)
|
||||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder.HasAnnotation("ProductVersion", "9.0.1");
|
||||
|
||||
modelBuilder.Entity("pet_companion_api.Models.Pet", b =>
|
||||
{
|
||||
b.Property<string>("Id")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<int>("Class")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("Level")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<string>("Name")
|
||||
.IsRequired()
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("UserId")
|
||||
.IsRequired()
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Pets");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("pet_companion_api.Models.PetStats", b =>
|
||||
{
|
||||
b.Property<string>("PetId")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<int>("Charisma")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("Intelligence")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("Strength")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.HasKey("PetId");
|
||||
|
||||
b.ToTable("PetStats");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("pet_companion_api.Models.Resources", b =>
|
||||
{
|
||||
b.Property<string>("PetId")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<int>("Food")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("Gold")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("Junk")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<int>("Wisdom")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.HasKey("PetId");
|
||||
|
||||
b.ToTable("Resources");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("pet_companion_api.Models.PetStats", b =>
|
||||
{
|
||||
b.HasOne("pet_companion_api.Models.Pet", null)
|
||||
.WithOne("Stats")
|
||||
.HasForeignKey("pet_companion_api.Models.PetStats", "PetId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
});
|
||||
|
||||
modelBuilder.Entity("pet_companion_api.Models.Resources", b =>
|
||||
{
|
||||
b.HasOne("pet_companion_api.Models.Pet", null)
|
||||
.WithOne("Resources")
|
||||
.HasForeignKey("pet_companion_api.Models.Resources", "PetId")
|
||||
.OnDelete(DeleteBehavior.Cascade)
|
||||
.IsRequired();
|
||||
});
|
||||
|
||||
modelBuilder.Entity("pet_companion_api.Models.Pet", b =>
|
||||
{
|
||||
b.Navigation("Resources")
|
||||
.IsRequired();
|
||||
|
||||
b.Navigation("Stats")
|
||||
.IsRequired();
|
||||
});
|
||||
#pragma warning restore 612, 618
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user