98 lines
3.2 KiB
C#
98 lines
3.2 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Unbinder.DB;
|
|
|
|
#nullable disable
|
|
|
|
namespace Unbinder.Migrations
|
|
{
|
|
[DbContext(typeof(UnbinderDbContext))]
|
|
[Migration("20231117145840_InitialMigration")]
|
|
partial class InitialMigration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("ProductVersion", "8.0.0")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
|
|
|
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("Unbinder.Models.Ingredient", b =>
|
|
{
|
|
b.Property<int>("IngredientId")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("IngredientId"));
|
|
|
|
b.Property<string>("Description")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<int?>("RecipeId")
|
|
.HasColumnType("int");
|
|
|
|
b.HasKey("IngredientId");
|
|
|
|
b.HasIndex("RecipeId");
|
|
|
|
b.ToTable("Ingredients");
|
|
});
|
|
|
|
modelBuilder.Entity("Unbinder.Models.Recipe", b =>
|
|
{
|
|
b.Property<int>("RecipeId")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("RecipeId"));
|
|
|
|
b.Property<string>("Author")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("ImageUrl")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("RecipeText")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("ShortDescription")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.HasKey("RecipeId");
|
|
|
|
b.ToTable("Recipes");
|
|
});
|
|
|
|
modelBuilder.Entity("Unbinder.Models.Ingredient", b =>
|
|
{
|
|
b.HasOne("Unbinder.Models.Recipe", null)
|
|
.WithMany("Ingredients")
|
|
.HasForeignKey("RecipeId");
|
|
});
|
|
|
|
modelBuilder.Entity("Unbinder.Models.Recipe", b =>
|
|
{
|
|
b.Navigation("Ingredients");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|