Disk quota
This commit is contained in:
parent
57105ae4c0
commit
81b9a2522e
9 changed files with 1193 additions and 22 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
|
||||
|
|
@ -217,6 +219,10 @@ namespace Yavsc.Migrations
|
|||
|
||||
b.Property<string>("DedicatedGoogleCalendar");
|
||||
|
||||
b.Property<long>("DiskQuota");
|
||||
|
||||
b.Property<long>("DiskUsage");
|
||||
|
||||
b.Property<string>("Email")
|
||||
.HasAnnotation("MaxLength", 256);
|
||||
|
||||
|
|
@ -357,8 +363,6 @@ namespace Yavsc.Migrations
|
|||
b.Property<string>("ClientId")
|
||||
.IsRequired();
|
||||
|
||||
b.Property<byte[]>("ClientSignature");
|
||||
|
||||
b.Property<DateTime>("ClientValidationDate");
|
||||
|
||||
b.Property<long?>("CommandId");
|
||||
|
|
@ -370,8 +374,6 @@ namespace Yavsc.Migrations
|
|||
b.Property<string>("OwnerId")
|
||||
.IsRequired();
|
||||
|
||||
b.Property<byte[]>("ProviderSignature");
|
||||
|
||||
b.Property<DateTime>("ProviderValidationDate");
|
||||
|
||||
b.Property<string>("Title");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue