221 lines
7.1 KiB
C#
221 lines
7.1 KiB
C#
|
// <auto-generated />
|
|||
|
using System;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|||
|
using Newsbot.Collector.Database;
|
|||
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace Newsbot.Collector.Database.Migrations
|
|||
|
{
|
|||
|
[DbContext(typeof(DatabaseContext))]
|
|||
|
partial class DatabaseContextModelSnapshot : ModelSnapshot
|
|||
|
{
|
|||
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|||
|
{
|
|||
|
#pragma warning disable 612, 618
|
|||
|
modelBuilder
|
|||
|
.HasAnnotation("ProductVersion", "7.0.7")
|
|||
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|||
|
|
|||
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|||
|
|
|||
|
modelBuilder.Entity("Newsbot.Collector.Domain.Entities.ArticlesEntity", b =>
|
|||
|
{
|
|||
|
b.Property<Guid>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<string>("AuthorImage")
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("AuthorName")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<bool>("CodeIsCommit")
|
|||
|
.HasColumnType("boolean");
|
|||
|
|
|||
|
b.Property<bool>("CodeIsRelease")
|
|||
|
.HasColumnType("boolean");
|
|||
|
|
|||
|
b.Property<string>("Description")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<DateTime>("PubDate")
|
|||
|
.HasColumnType("timestamp with time zone");
|
|||
|
|
|||
|
b.Property<Guid>("SourceId")
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<string>("Tags")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("Thumbnail")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("Title")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("Url")
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("Video")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<int>("VideoHeight")
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
b.Property<int>("VideoWidth")
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.ToTable("Articles");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Newsbot.Collector.Domain.Entities.DiscordQueueEntity", b =>
|
|||
|
{
|
|||
|
b.Property<Guid>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<Guid>("ArticleId")
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.ToTable("DiscordQueue");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Newsbot.Collector.Domain.Entities.DiscordWebhookEntity", b =>
|
|||
|
{
|
|||
|
b.Property<Guid>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<string>("Channel")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<bool>("Enabled")
|
|||
|
.HasColumnType("boolean");
|
|||
|
|
|||
|
b.Property<string>("Server")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("Url")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.ToTable("DiscordWebhooks");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Newsbot.Collector.Domain.Entities.IconEntity", b =>
|
|||
|
{
|
|||
|
b.Property<Guid>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<string>("FileName")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("Site")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<Guid>("SourceId")
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.ToTable("Icons");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Newsbot.Collector.Domain.Entities.SourceEntity", b =>
|
|||
|
{
|
|||
|
b.Property<Guid>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<bool>("Deleted")
|
|||
|
.HasColumnType("boolean");
|
|||
|
|
|||
|
b.Property<bool>("Enabled")
|
|||
|
.HasColumnType("boolean");
|
|||
|
|
|||
|
b.Property<string>("Name")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("Site")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("Source")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("Tags")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("Type")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("Url")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("Value")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<string>("YoutubeId")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.ToTable("Sources");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Newsbot.Collector.Domain.Entities.SubscriptionEntity", b =>
|
|||
|
{
|
|||
|
b.Property<Guid>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<bool>("CodeAllowCommits")
|
|||
|
.HasColumnType("boolean");
|
|||
|
|
|||
|
b.Property<bool>("CodeAllowReleases")
|
|||
|
.HasColumnType("boolean");
|
|||
|
|
|||
|
b.Property<Guid>("DiscordWebHookId")
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<Guid>("SourceId")
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.ToTable("Subscriptions");
|
|||
|
});
|
|||
|
#pragma warning restore 612, 618
|
|||
|
}
|
|||
|
}
|
|||
|
}
|