Chat rooms

This commit is contained in:
Paul Schneider 2019-05-10 09:58:09 +01:00
commit 6ad9b82174
23 changed files with 3641 additions and 341 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");
});