Chat rooms

This commit is contained in:
2019-05-10 09:58:09 +01:00
parent 3adff3b155
commit 7a84e2965b
23 changed files with 3646 additions and 346 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
@ -544,10 +546,20 @@ namespace Yavsc.Migrations
b.Property<string>("Name")
.HasAnnotation("MaxLength", 255);
b.Property<DateTime>("DateCreated");
b.Property<DateTime>("DateModified");
b.Property<DateTime>("LatestJoinPart");
b.Property<string>("OwnerId");
b.Property<string>("Topic");
b.Property<string>("UserCreated");
b.Property<string>("UserModified");
b.HasKey("Name");
});