minChz.|<_|

This commit is contained in:
2018-02-25 03:33:54 +01:00
parent 715eec6ade
commit 1efd8bc36d
30 changed files with 3182 additions and 95 deletions

View File

@ -1,6 +1,8 @@
using System;
using Microsoft.Data.Entity;
using Microsoft.Data.Entity.Infrastructure;
using Microsoft.Data.Entity.Metadata;
using Microsoft.Data.Entity.Migrations;
using Yavsc.Models;
namespace Yavsc.Migrations
@ -349,8 +351,7 @@ namespace Yavsc.Migrations
b.Property<string>("Description");
b.Property<string>("OwnerId")
.IsRequired();
b.Property<string>("OwnerId");
b.Property<DateTime>("ProviderValidationDate");
@ -672,6 +673,10 @@ namespace Yavsc.Migrations
b.Property<decimal?>("Previsional");
b.Property<bool>("Rejected");
b.Property<DateTime>("RejectedAt");
b.Property<string>("SelectedProfileUserId");
b.Property<int>("Status");
@ -713,6 +718,10 @@ namespace Yavsc.Migrations
b.Property<decimal?>("Previsional");
b.Property<bool>("Rejected");
b.Property<DateTime>("RejectedAt");
b.Property<int>("Status");
b.Property<string>("UserCreated");
@ -874,7 +883,7 @@ namespace Yavsc.Migrations
b.Property<long>("Id")
.ValueGeneratedOnAdd();
b.Property<int>("For");
b.Property<byte>("For");
b.Property<string>("Message");
@ -893,7 +902,7 @@ namespace Yavsc.Migrations
b.Property<string>("Avatar");
b.Property<long?>("BillingAddressId");
b.Property<long>("BillingAddressId");
b.Property<string>("EMail");
@ -1279,6 +1288,10 @@ namespace Yavsc.Migrations
b.Property<string>("Reason");
b.Property<bool>("Rejected");
b.Property<DateTime>("RejectedAt");
b.Property<int>("Status");
b.Property<string>("UserCreated");
@ -1600,13 +1613,6 @@ namespace Yavsc.Migrations
.HasForeignKey("OwnerId");
});
modelBuilder.Entity("Yavsc.Models.Messaging.ClientProviderInfo", b =>
{
b.HasOne("Yavsc.Models.Relationship.Location")
.WithMany()
.HasForeignKey("BillingAddressId");
});
modelBuilder.Entity("Yavsc.Models.Messaging.DimissClicked", b =>
{
b.HasOne("Yavsc.Models.Messaging.Notification")