// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Sledgemapper.Helpers; namespace Sledgemapper.Migrations.SqliteMigrations { [DbContext(typeof(SqliteDataContext))] partial class SqliteDataContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "3.1.0"); modelBuilder.Entity("Sledgemapper.Entities.User", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("FirstName") .HasColumnType("TEXT"); b.Property("LastName") .HasColumnType("TEXT"); b.Property("Initials") .HasColumnType("TEXT"); b.Property("PasswordHash") .HasColumnType("BLOB"); b.Property("PasswordSalt") .HasColumnType("BLOB"); b.Property("Username") .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("Users"); }); #pragma warning restore 612, 618 } } }