mirror of
https://github.com/NoiTheCat/WorldTime.git
synced 2024-11-22 14:44:36 +00:00
50 lines
1.6 KiB
C#
50 lines
1.6 KiB
C#
|
// <auto-generated />
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|||
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|||
|
using WorldTime.Data;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace WorldTime.Data.Migrations
|
|||
|
{
|
|||
|
[DbContext(typeof(BotDatabaseContext))]
|
|||
|
[Migration("20220629003046_RemoveLastUpdated")]
|
|||
|
partial class RemoveLastUpdated
|
|||
|
{
|
|||
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|||
|
{
|
|||
|
#pragma warning disable 612, 618
|
|||
|
modelBuilder
|
|||
|
.HasAnnotation("ProductVersion", "6.0.6")
|
|||
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|||
|
|
|||
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|||
|
|
|||
|
modelBuilder.Entity("WorldTime.Data.UserEntry", b =>
|
|||
|
{
|
|||
|
b.Property<long>("GuildId")
|
|||
|
.HasColumnType("bigint")
|
|||
|
.HasColumnName("guild_id");
|
|||
|
|
|||
|
b.Property<long>("UserId")
|
|||
|
.HasColumnType("bigint")
|
|||
|
.HasColumnName("user_id");
|
|||
|
|
|||
|
b.Property<string>("TimeZone")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("text")
|
|||
|
.HasColumnName("zone");
|
|||
|
|
|||
|
b.HasKey("GuildId", "UserId")
|
|||
|
.HasName("userdata_pkey");
|
|||
|
|
|||
|
b.ToTable("userdata", (string)null);
|
|||
|
});
|
|||
|
#pragma warning restore 612, 618
|
|||
|
}
|
|||
|
}
|
|||
|
}
|