Chat rooms
This commit is contained in:
parent
f59d3b4b22
commit
6ad9b82174
23 changed files with 3641 additions and 341 deletions
|
|
@ -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");
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue