62 lines
1.8 KiB
C#
62 lines
1.8 KiB
C#
|
// <auto-generated />
|
|||
|
using System;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|||
|
using Snootalogue.Data;
|
|||
|
|
|||
|
namespace snootalogue.Migrations
|
|||
|
{
|
|||
|
[DbContext(typeof(SnootalogueContext))]
|
|||
|
[Migration("20200915115113_InitialCreate")]
|
|||
|
partial class InitialCreate
|
|||
|
{
|
|||
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|||
|
{
|
|||
|
#pragma warning disable 612, 618
|
|||
|
modelBuilder
|
|||
|
.HasAnnotation("ProductVersion", "3.1.0");
|
|||
|
|
|||
|
modelBuilder.Entity("Snootalogue.Models.Document", b =>
|
|||
|
{
|
|||
|
b.Property<int>("ID")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("INTEGER");
|
|||
|
|
|||
|
b.Property<string>("Authors")
|
|||
|
.HasColumnType("TEXT");
|
|||
|
|
|||
|
b.Property<string>("Category")
|
|||
|
.HasColumnType("TEXT");
|
|||
|
|
|||
|
b.Property<DateTime>("DateAdded")
|
|||
|
.HasColumnType("TEXT");
|
|||
|
|
|||
|
b.Property<string>("Filename")
|
|||
|
.HasColumnType("TEXT");
|
|||
|
|
|||
|
b.Property<string>("Hash")
|
|||
|
.HasColumnType("TEXT");
|
|||
|
|
|||
|
b.Property<bool>("Read")
|
|||
|
.HasColumnType("INTEGER");
|
|||
|
|
|||
|
b.Property<long>("Size")
|
|||
|
.HasColumnType("INTEGER");
|
|||
|
|
|||
|
b.Property<string>("Tags")
|
|||
|
.HasColumnType("TEXT");
|
|||
|
|
|||
|
b.Property<string>("Title")
|
|||
|
.HasColumnType("TEXT");
|
|||
|
|
|||
|
b.HasKey("ID");
|
|||
|
|
|||
|
b.ToTable("Document");
|
|||
|
});
|
|||
|
#pragma warning restore 612, 618
|
|||
|
}
|
|||
|
}
|
|||
|
}
|