command forms :-)

This commit is contained in:
2017-01-24 10:43:42 +01:00
parent a169f38baf
commit 89c548d9e2
17 changed files with 214 additions and 48 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
@ -528,6 +530,15 @@ namespace Yavsc.Migrations
b.HasKey("ConnectionId");
});
modelBuilder.Entity("Yavsc.Models.Forms.Form", b =>
{
b.Property<string>("Id");
b.Property<string>("Summary");
b.HasKey("Id");
});
modelBuilder.Entity("Yavsc.Models.Identity.GoogleCloudMobileDeclaration", b =>
{
b.Property<string>("DeviceId");
@ -715,15 +726,16 @@ namespace Yavsc.Migrations
modelBuilder.Entity("Yavsc.Models.Workflow.CommandForm", b =>
{
b.Property<string>("Id");
b.Property<long>("Id")
.ValueGeneratedOnAdd();
b.Property<string>("ActivityCode")
.IsRequired();
b.Property<string>("Summary");
b.Property<string>("Title");
b.Property<string>("ViewName");
b.HasKey("Id");
});