refabrique
This commit is contained in:
@ -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");
|
||||
});
|
||||
|
Reference in New Issue
Block a user