42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
// <auto-generated />
|
|
using AutoCatCore.Model;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
namespace AutoCatCore.Migrations
|
|
{
|
|
[DbContext(typeof(AutoCatDbContext))]
|
|
[Migration("20210104145513_CreateDB")]
|
|
partial class CreateDB
|
|
{
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("ProductVersion", "3.1.10");
|
|
|
|
modelBuilder.Entity("AutoCat.Model.User", b =>
|
|
{
|
|
b.Property<string>("Email")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("FirebaseIdToken")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("FirebaseRefreshToken")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Token")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("Email");
|
|
|
|
b.ToTable("Users");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|