71 lines
2.3 KiB
C#
71 lines
2.3 KiB
C#
// <auto-generated />
|
|
using Gready_Poang.DataLayer.Database;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
#nullable disable
|
|
|
|
namespace Gready_Poang.DataLayer.Migrations
|
|
{
|
|
[DbContext(typeof(DataContext))]
|
|
[Migration("20250901152226_initialCreate")]
|
|
partial class initialCreate
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder.HasAnnotation("ProductVersion", "9.0.8");
|
|
|
|
modelBuilder.Entity("Gready_Poang.EntityLayer.Participant", b =>
|
|
{
|
|
b.Property<int>("ParticipantId")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("Email")
|
|
.IsRequired()
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("FirstName")
|
|
.IsRequired()
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("LastName")
|
|
.IsRequired()
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("ParticipantId");
|
|
|
|
b.ToTable("Participants");
|
|
|
|
b.HasData(
|
|
new
|
|
{
|
|
ParticipantId = 1,
|
|
Email = "John.Doe@gmail.com",
|
|
FirstName = "John",
|
|
LastName = "Doe"
|
|
},
|
|
new
|
|
{
|
|
ParticipantId = 2,
|
|
Email = "jb@gmail.com",
|
|
FirstName = "Jane",
|
|
LastName = "Black"
|
|
},
|
|
new
|
|
{
|
|
ParticipantId = 3,
|
|
Email = "mw@gmail.com",
|
|
FirstName = "Mary",
|
|
LastName = "White"
|
|
});
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|