124 lines
4.2 KiB
C#
124 lines
4.2 KiB
C#
|
// <auto-generated />
|
|||
|
using System;
|
|||
|
using Demo.Data.RemoteData.RemoteDataBase;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|||
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace Demo.Migrations
|
|||
|
{
|
|||
|
[DbContext(typeof(RemoteDatabaseContext))]
|
|||
|
[Migration("20241025085326_InitialCreate")]
|
|||
|
partial class InitialCreate
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|||
|
{
|
|||
|
#pragma warning disable 612, 618
|
|||
|
modelBuilder
|
|||
|
.HasAnnotation("ProductVersion", "8.0.10")
|
|||
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|||
|
|
|||
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|||
|
|
|||
|
modelBuilder.Entity("Demo.Data.RemoteData.RemoteDataBase.DAO.GroupDao", b =>
|
|||
|
{
|
|||
|
b.Property<int>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
|||
|
|
|||
|
b.Property<string>("Name")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.ToTable("Groups");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Demo.Data.RemoteData.RemoteDataBase.DAO.PresenceDao", b =>
|
|||
|
{
|
|||
|
b.Property<int>("UserId")
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
b.Property<DateOnly>("Date")
|
|||
|
.HasColumnType("date");
|
|||
|
|
|||
|
b.Property<bool>("IsAttedance")
|
|||
|
.HasColumnType("boolean");
|
|||
|
|
|||
|
b.Property<int>("LessonNumber")
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
b.Property<int>("GroupId")
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
b.Property<int>("UserDaoUserId")
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
b.HasKey("UserId", "Date", "IsAttedance", "LessonNumber");
|
|||
|
|
|||
|
b.HasIndex("UserDaoUserId");
|
|||
|
|
|||
|
b.ToTable("PresenceDaos");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Demo.Data.RemoteData.RemoteDataBase.DAO.UserDao", b =>
|
|||
|
{
|
|||
|
b.Property<int>("UserId")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("UserId"));
|
|||
|
|
|||
|
b.Property<string>("FIO")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<int>("GroupId")
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
b.HasKey("UserId");
|
|||
|
|
|||
|
b.HasIndex("GroupId");
|
|||
|
|
|||
|
b.ToTable("Users");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Demo.Data.RemoteData.RemoteDataBase.DAO.PresenceDao", b =>
|
|||
|
{
|
|||
|
b.HasOne("Demo.Data.RemoteData.RemoteDataBase.DAO.UserDao", "UserDao")
|
|||
|
.WithMany()
|
|||
|
.HasForeignKey("UserDaoUserId")
|
|||
|
.OnDelete(DeleteBehavior.Cascade)
|
|||
|
.IsRequired();
|
|||
|
|
|||
|
b.Navigation("UserDao");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Demo.Data.RemoteData.RemoteDataBase.DAO.UserDao", b =>
|
|||
|
{
|
|||
|
b.HasOne("Demo.Data.RemoteData.RemoteDataBase.DAO.GroupDao", "Group")
|
|||
|
.WithMany("Users")
|
|||
|
.HasForeignKey("GroupId")
|
|||
|
.OnDelete(DeleteBehavior.Cascade)
|
|||
|
.IsRequired();
|
|||
|
|
|||
|
b.Navigation("Group");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Demo.Data.RemoteData.RemoteDataBase.DAO.GroupDao", b =>
|
|||
|
{
|
|||
|
b.Navigation("Users");
|
|||
|
});
|
|||
|
#pragma warning restore 612, 618
|
|||
|
}
|
|||
|
}
|
|||
|
}
|