minChz.|<_|
This commit is contained in:
@ -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")
|
||||
|
Reference in New Issue
Block a user