48 lines
1.6 KiB
C#
48 lines
1.6 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Webhooks.API.Infrastructure;
|
|
|
|
namespace Webhooks.API.Migrations
|
|
{
|
|
[DbContext(typeof(WebhooksContext))]
|
|
[Migration("20190118091148_Initial")]
|
|
partial class Initial
|
|
{
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("ProductVersion", "2.2.1-servicing-10028")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 128)
|
|
.HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
|
|
|
|
modelBuilder.Entity("Webhooks.API.Model.WebhookSubscription", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
|
|
|
|
b.Property<DateTime>("Date");
|
|
|
|
b.Property<string>("DestUrl");
|
|
|
|
b.Property<string>("Token");
|
|
|
|
b.Property<int>("Type");
|
|
|
|
b.Property<string>("UserId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("Subscriptions");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|