refabrique
This commit is contained in:
parent
d9835539d5
commit
7c603b3cec
17 changed files with 1797 additions and 139 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
|
||||
|
|
@ -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");
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue