mirror of
https://github.com/jcreek/advent-of-code.git
synced 2026-07-12 18:53:47 +00:00
36 lines
990 B
C#
36 lines
990 B
C#
// <auto-generated />
|
|
using Day06;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
#nullable disable
|
|
|
|
namespace _06.Migrations
|
|
{
|
|
[DbContext(typeof(FishContext))]
|
|
partial class FishContextModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder.HasAnnotation("ProductVersion", "6.0.0");
|
|
|
|
modelBuilder.Entity("Day06.Fish", b =>
|
|
{
|
|
b.Property<int>("FishId")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<int>("InternalTimer")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.HasKey("FishId");
|
|
|
|
b.ToTable("Fishes");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|