refabrique

This commit is contained in:
2016-08-02 17:02:38 +02:00
parent 12fd7c3f3d
commit b565cf54e5
17 changed files with 1797 additions and 139 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
@ -309,21 +311,21 @@ namespace Yavsc.Migrations
b.Property<string>("AuthorId");
b.Property<string>("bcontent");
b.Property<string>("Content");
b.Property<DateTime>("modified");
b.Property<DateTime>("Modified");
b.Property<string>("photo");
b.Property<string>("Photo");
b.Property<DateTime>("posted")
b.Property<DateTime>("Posted")
.ValueGeneratedOnAdd()
.HasAnnotation("Relational:GeneratedValueSql", "LOCALTIMESTAMP");
b.Property<int>("rate");
b.Property<int>("Rate");
b.Property<string>("title");
b.Property<string>("Title");
b.Property<bool>("visible");
b.Property<bool>("Visible");
b.HasKey("Id");
});