fix: revert patron migration temporarily as ef core is bugging out hard

This commit is contained in:
Kwoth
2024-11-03 08:39:37 +00:00
parent 2b301c0aab
commit ee0a28afab
7 changed files with 87 additions and 7072 deletions

View File

@@ -618,7 +618,7 @@ public abstract class NadekoContext : DbContext
modelBuilder.Entity<PatronUser>(pu => modelBuilder.Entity<PatronUser>(pu =>
{ {
pu.HasIndex(x => x.UniquePlatformUserId).IsUnique(); pu.HasIndex(x => x.UniquePlatformUserId).IsUnique();
pu.HasIndex(x => x.UserId).IsUnique(false); pu.HasKey(x => x.UserId);
}); });
// quotes are per user id // quotes are per user id

File diff suppressed because it is too large Load Diff

View File

@@ -1,58 +0,0 @@
using Microsoft.EntityFrameworkCore.Migrations;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
namespace NadekoBot.Migrations.PostgreSql
{
/// <inheritdoc />
public partial class patronfix : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropPrimaryKey(
name: "pk_patrons",
table: "patrons");
migrationBuilder.AddColumn<int>(
name: "id",
table: "patrons",
type: "integer",
nullable: false,
defaultValue: 0)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
migrationBuilder.AddPrimaryKey(
name: "pk_patrons",
table: "patrons",
column: "id");
migrationBuilder.CreateIndex(
name: "ix_patrons_userid",
table: "patrons",
column: "userid");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropPrimaryKey(
name: "pk_patrons",
table: "patrons");
migrationBuilder.DropIndex(
name: "ix_patrons_userid",
table: "patrons");
migrationBuilder.DropColumn(
name: "id",
table: "patrons");
migrationBuilder.AddPrimaryKey(
name: "pk_patrons",
table: "patrons",
column: "userid");
}
}
}

View File

@@ -1753,12 +1753,10 @@ namespace NadekoBot.Migrations.PostgreSql
modelBuilder.Entity("NadekoBot.Db.Models.PatronUser", b => modelBuilder.Entity("NadekoBot.Db.Models.PatronUser", b =>
{ {
b.Property<int>("Id") b.Property<decimal>("UserId")
.ValueGeneratedOnAdd() .ValueGeneratedOnAdd()
.HasColumnType("integer") .HasColumnType("numeric(20,0)")
.HasColumnName("id"); .HasColumnName("userid");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<int>("AmountCents") b.Property<int>("AmountCents")
.HasColumnType("integer") .HasColumnType("integer")
@@ -1772,24 +1770,17 @@ namespace NadekoBot.Migrations.PostgreSql
.HasColumnType("text") .HasColumnType("text")
.HasColumnName("uniqueplatformuserid"); .HasColumnName("uniqueplatformuserid");
b.Property<decimal>("UserId")
.HasColumnType("numeric(20,0)")
.HasColumnName("userid");
b.Property<DateTime>("ValidThru") b.Property<DateTime>("ValidThru")
.HasColumnType("timestamp without time zone") .HasColumnType("timestamp without time zone")
.HasColumnName("validthru"); .HasColumnName("validthru");
b.HasKey("Id") b.HasKey("UserId")
.HasName("pk_patrons"); .HasName("pk_patrons");
b.HasIndex("UniquePlatformUserId") b.HasIndex("UniquePlatformUserId")
.IsUnique() .IsUnique()
.HasDatabaseName("ix_patrons_uniqueplatformuserid"); .HasDatabaseName("ix_patrons_uniqueplatformuserid");
b.HasIndex("UserId")
.HasDatabaseName("ix_patrons_userid");
b.ToTable("patrons", (string)null); b.ToTable("patrons", (string)null);
}); });

File diff suppressed because it is too large Load Diff

View File

@@ -1,75 +0,0 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace NadekoBot.Migrations
{
/// <inheritdoc />
public partial class patronfix : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropPrimaryKey(
name: "PK_Patrons",
table: "Patrons");
migrationBuilder.AlterColumn<ulong>(
name: "UserId",
table: "Patrons",
type: "INTEGER",
nullable: false,
oldClrType: typeof(ulong),
oldType: "INTEGER")
.OldAnnotation("Sqlite:Autoincrement", true);
migrationBuilder.AddColumn<int>(
name: "Id",
table: "Patrons",
type: "INTEGER",
nullable: false,
defaultValue: 0)
.Annotation("Sqlite:Autoincrement", true);
migrationBuilder.AddPrimaryKey(
name: "PK_Patrons",
table: "Patrons",
column: "Id");
migrationBuilder.CreateIndex(
name: "IX_Patrons_UserId",
table: "Patrons",
column: "UserId");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropPrimaryKey(
name: "PK_Patrons",
table: "Patrons");
migrationBuilder.DropIndex(
name: "IX_Patrons_UserId",
table: "Patrons");
migrationBuilder.DropColumn(
name: "Id",
table: "Patrons");
migrationBuilder.AlterColumn<ulong>(
name: "UserId",
table: "Patrons",
type: "INTEGER",
nullable: false,
oldClrType: typeof(ulong),
oldType: "INTEGER")
.Annotation("Sqlite:Autoincrement", true);
migrationBuilder.AddPrimaryKey(
name: "PK_Patrons",
table: "Patrons",
column: "UserId");
}
}
}

View File

@@ -43,7 +43,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId") b.HasIndex("GuildConfigId")
.IsUnique(); .IsUnique();
b.ToTable("AntiAltSetting"); b.ToTable("AntiAltSetting", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.AntiRaidSetting", b => modelBuilder.Entity("NadekoBot.Db.Models.AntiRaidSetting", b =>
@@ -75,7 +75,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId") b.HasIndex("GuildConfigId")
.IsUnique(); .IsUnique();
b.ToTable("AntiRaidSetting"); b.ToTable("AntiRaidSetting", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.AntiSpamIgnore", b => modelBuilder.Entity("NadekoBot.Db.Models.AntiSpamIgnore", b =>
@@ -97,7 +97,7 @@ namespace NadekoBot.Migrations
b.HasIndex("AntiSpamSettingId"); b.HasIndex("AntiSpamSettingId");
b.ToTable("AntiSpamIgnore"); b.ToTable("AntiSpamIgnore", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.AntiSpamSetting", b => modelBuilder.Entity("NadekoBot.Db.Models.AntiSpamSetting", b =>
@@ -129,7 +129,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId") b.HasIndex("GuildConfigId")
.IsUnique(); .IsUnique();
b.ToTable("AntiSpamSetting"); b.ToTable("AntiSpamSetting", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.ArchivedTodoListModel", b => modelBuilder.Entity("NadekoBot.Db.Models.ArchivedTodoListModel", b =>
@@ -146,7 +146,7 @@ namespace NadekoBot.Migrations
b.HasKey("Id"); b.HasKey("Id");
b.ToTable("TodosArchive"); b.ToTable("TodosArchive", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.AutoCommand", b => modelBuilder.Entity("NadekoBot.Db.Models.AutoCommand", b =>
@@ -184,7 +184,7 @@ namespace NadekoBot.Migrations
b.HasKey("Id"); b.HasKey("Id");
b.ToTable("AutoCommands"); b.ToTable("AutoCommands", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.AutoPublishChannel", b => modelBuilder.Entity("NadekoBot.Db.Models.AutoPublishChannel", b =>
@@ -207,7 +207,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildId") b.HasIndex("GuildId")
.IsUnique(); .IsUnique();
b.ToTable("AutoPublishChannel"); b.ToTable("AutoPublishChannel", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.AutoTranslateChannel", b => modelBuilder.Entity("NadekoBot.Db.Models.AutoTranslateChannel", b =>
@@ -235,7 +235,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildId"); b.HasIndex("GuildId");
b.ToTable("AutoTranslateChannels"); b.ToTable("AutoTranslateChannels", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.AutoTranslateUser", b => modelBuilder.Entity("NadekoBot.Db.Models.AutoTranslateUser", b =>
@@ -263,7 +263,7 @@ namespace NadekoBot.Migrations
b.HasAlternateKey("ChannelId", "UserId"); b.HasAlternateKey("ChannelId", "UserId");
b.ToTable("AutoTranslateUsers"); b.ToTable("AutoTranslateUsers", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.BanTemplate", b => modelBuilder.Entity("NadekoBot.Db.Models.BanTemplate", b =>
@@ -289,7 +289,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildId") b.HasIndex("GuildId")
.IsUnique(); .IsUnique();
b.ToTable("BanTemplates"); b.ToTable("BanTemplates", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.BankUser", b => modelBuilder.Entity("NadekoBot.Db.Models.BankUser", b =>
@@ -312,7 +312,7 @@ namespace NadekoBot.Migrations
b.HasIndex("UserId") b.HasIndex("UserId")
.IsUnique(); .IsUnique();
b.ToTable("BankUsers"); b.ToTable("BankUsers", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.BlacklistEntry", b => modelBuilder.Entity("NadekoBot.Db.Models.BlacklistEntry", b =>
@@ -332,7 +332,7 @@ namespace NadekoBot.Migrations
b.HasKey("Id"); b.HasKey("Id");
b.ToTable("Blacklist"); b.ToTable("Blacklist", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.ClubApplicants", b => modelBuilder.Entity("NadekoBot.Db.Models.ClubApplicants", b =>
@@ -347,7 +347,7 @@ namespace NadekoBot.Migrations
b.HasIndex("UserId"); b.HasIndex("UserId");
b.ToTable("ClubApplicants"); b.ToTable("ClubApplicants", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.ClubBans", b => modelBuilder.Entity("NadekoBot.Db.Models.ClubBans", b =>
@@ -362,7 +362,7 @@ namespace NadekoBot.Migrations
b.HasIndex("UserId"); b.HasIndex("UserId");
b.ToTable("ClubBans"); b.ToTable("ClubBans", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.ClubInfo", b => modelBuilder.Entity("NadekoBot.Db.Models.ClubInfo", b =>
@@ -398,7 +398,7 @@ namespace NadekoBot.Migrations
b.HasIndex("OwnerId") b.HasIndex("OwnerId")
.IsUnique(); .IsUnique();
b.ToTable("Clubs"); b.ToTable("Clubs", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.CommandAlias", b => modelBuilder.Entity("NadekoBot.Db.Models.CommandAlias", b =>
@@ -423,7 +423,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("CommandAlias"); b.ToTable("CommandAlias", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.CommandCooldown", b => modelBuilder.Entity("NadekoBot.Db.Models.CommandCooldown", b =>
@@ -448,7 +448,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("CommandCooldown"); b.ToTable("CommandCooldown", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.CurrencyTransaction", b => modelBuilder.Entity("NadekoBot.Db.Models.CurrencyTransaction", b =>
@@ -486,7 +486,7 @@ namespace NadekoBot.Migrations
b.HasIndex("UserId"); b.HasIndex("UserId");
b.ToTable("CurrencyTransactions"); b.ToTable("CurrencyTransactions", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.DelMsgOnCmdChannel", b => modelBuilder.Entity("NadekoBot.Db.Models.DelMsgOnCmdChannel", b =>
@@ -511,7 +511,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("DelMsgOnCmdChannel"); b.ToTable("DelMsgOnCmdChannel", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.DiscordPermOverride", b => modelBuilder.Entity("NadekoBot.Db.Models.DiscordPermOverride", b =>
@@ -537,7 +537,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildId", "Command") b.HasIndex("GuildId", "Command")
.IsUnique(); .IsUnique();
b.ToTable("DiscordPermOverrides"); b.ToTable("DiscordPermOverrides", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.DiscordUser", b => modelBuilder.Entity("NadekoBot.Db.Models.DiscordUser", b =>
@@ -595,7 +595,7 @@ namespace NadekoBot.Migrations
b.HasIndex("Username"); b.HasIndex("Username");
b.ToTable("DiscordUser"); b.ToTable("DiscordUser", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.ExcludedItem", b => modelBuilder.Entity("NadekoBot.Db.Models.ExcludedItem", b =>
@@ -620,7 +620,7 @@ namespace NadekoBot.Migrations
b.HasIndex("XpSettingsId"); b.HasIndex("XpSettingsId");
b.ToTable("ExcludedItem"); b.ToTable("ExcludedItem", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.FeedSub", b => modelBuilder.Entity("NadekoBot.Db.Models.FeedSub", b =>
@@ -649,7 +649,7 @@ namespace NadekoBot.Migrations
b.HasAlternateKey("GuildConfigId", "Url"); b.HasAlternateKey("GuildConfigId", "Url");
b.ToTable("FeedSub"); b.ToTable("FeedSub", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.FilterChannelId", b => modelBuilder.Entity("NadekoBot.Db.Models.FilterChannelId", b =>
@@ -671,7 +671,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("FilterChannelId"); b.ToTable("FilterChannelId", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.FilterLinksChannelId", b => modelBuilder.Entity("NadekoBot.Db.Models.FilterLinksChannelId", b =>
@@ -693,7 +693,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("FilterLinksChannelId"); b.ToTable("FilterLinksChannelId", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.FilterWordsChannelId", b => modelBuilder.Entity("NadekoBot.Db.Models.FilterWordsChannelId", b =>
@@ -715,7 +715,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("FilterWordsChannelId"); b.ToTable("FilterWordsChannelId", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.FilteredWord", b => modelBuilder.Entity("NadekoBot.Db.Models.FilteredWord", b =>
@@ -737,7 +737,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("FilteredWord"); b.ToTable("FilteredWord", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.FlagTranslateChannel", b => modelBuilder.Entity("NadekoBot.Db.Models.FlagTranslateChannel", b =>
@@ -760,7 +760,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildId", "ChannelId") b.HasIndex("GuildId", "ChannelId")
.IsUnique(); .IsUnique();
b.ToTable("FlagTranslateChannel"); b.ToTable("FlagTranslateChannel", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.FollowedStream", b => modelBuilder.Entity("NadekoBot.Db.Models.FollowedStream", b =>
@@ -794,7 +794,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("FollowedStream"); b.ToTable("FollowedStream", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.GCChannelId", b => modelBuilder.Entity("NadekoBot.Db.Models.GCChannelId", b =>
@@ -816,7 +816,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("GCChannelId"); b.ToTable("GCChannelId", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.GamblingStats", b => modelBuilder.Entity("NadekoBot.Db.Models.GamblingStats", b =>
@@ -842,7 +842,7 @@ namespace NadekoBot.Migrations
b.HasIndex("Feature") b.HasIndex("Feature")
.IsUnique(); .IsUnique();
b.ToTable("GamblingStats"); b.ToTable("GamblingStats", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.GiveawayModel", b => modelBuilder.Entity("NadekoBot.Db.Models.GiveawayModel", b =>
@@ -868,7 +868,7 @@ namespace NadekoBot.Migrations
b.HasKey("Id"); b.HasKey("Id");
b.ToTable("GiveawayModel"); b.ToTable("GiveawayModel", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.GiveawayUser", b => modelBuilder.Entity("NadekoBot.Db.Models.GiveawayUser", b =>
@@ -891,7 +891,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GiveawayId", "UserId") b.HasIndex("GiveawayId", "UserId")
.IsUnique(); .IsUnique();
b.ToTable("GiveawayUser"); b.ToTable("GiveawayUser", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.GroupName", b => modelBuilder.Entity("NadekoBot.Db.Models.GroupName", b =>
@@ -917,7 +917,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId", "Number") b.HasIndex("GuildConfigId", "Number")
.IsUnique(); .IsUnique();
b.ToTable("GroupName"); b.ToTable("GroupName", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.GuildConfig", b => modelBuilder.Entity("NadekoBot.Db.Models.GuildConfig", b =>
@@ -1010,7 +1010,7 @@ namespace NadekoBot.Migrations
b.HasIndex("WarnExpireHours"); b.HasIndex("WarnExpireHours");
b.ToTable("GuildConfigs"); b.ToTable("GuildConfigs", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.HoneypotChannel", b => modelBuilder.Entity("NadekoBot.Db.Models.HoneypotChannel", b =>
@@ -1024,7 +1024,7 @@ namespace NadekoBot.Migrations
b.HasKey("GuildId"); b.HasKey("GuildId");
b.ToTable("HoneyPotChannels"); b.ToTable("HoneyPotChannels", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.IgnoredLogItem", b => modelBuilder.Entity("NadekoBot.Db.Models.IgnoredLogItem", b =>
@@ -1050,7 +1050,7 @@ namespace NadekoBot.Migrations
b.HasIndex("LogSettingId", "LogItemId", "ItemType") b.HasIndex("LogSettingId", "LogItemId", "ItemType")
.IsUnique(); .IsUnique();
b.ToTable("IgnoredLogChannels"); b.ToTable("IgnoredLogChannels", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.ImageOnlyChannel", b => modelBuilder.Entity("NadekoBot.Db.Models.ImageOnlyChannel", b =>
@@ -1076,7 +1076,7 @@ namespace NadekoBot.Migrations
b.HasIndex("ChannelId") b.HasIndex("ChannelId")
.IsUnique(); .IsUnique();
b.ToTable("ImageOnlyChannels"); b.ToTable("ImageOnlyChannels", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.LogSetting", b => modelBuilder.Entity("NadekoBot.Db.Models.LogSetting", b =>
@@ -1150,7 +1150,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildId") b.HasIndex("GuildId")
.IsUnique(); .IsUnique();
b.ToTable("LogSettings"); b.ToTable("LogSettings", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.MusicPlayerSettings", b => modelBuilder.Entity("NadekoBot.Db.Models.MusicPlayerSettings", b =>
@@ -1187,7 +1187,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildId") b.HasIndex("GuildId")
.IsUnique(); .IsUnique();
b.ToTable("MusicPlayerSettings"); b.ToTable("MusicPlayerSettings", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.MusicPlaylist", b => modelBuilder.Entity("NadekoBot.Db.Models.MusicPlaylist", b =>
@@ -1210,7 +1210,7 @@ namespace NadekoBot.Migrations
b.HasKey("Id"); b.HasKey("Id");
b.ToTable("MusicPlaylists"); b.ToTable("MusicPlaylists", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.MutedUserId", b => modelBuilder.Entity("NadekoBot.Db.Models.MutedUserId", b =>
@@ -1232,7 +1232,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("MutedUserId"); b.ToTable("MutedUserId", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.NCPixel", b => modelBuilder.Entity("NadekoBot.Db.Models.NCPixel", b =>
@@ -1264,7 +1264,7 @@ namespace NadekoBot.Migrations
b.HasIndex("OwnerId"); b.HasIndex("OwnerId");
b.ToTable("NCPixel"); b.ToTable("NCPixel", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.NadekoExpression", b => modelBuilder.Entity("NadekoBot.Db.Models.NadekoExpression", b =>
@@ -1302,12 +1302,12 @@ namespace NadekoBot.Migrations
b.HasKey("Id"); b.HasKey("Id");
b.ToTable("Expressions"); b.ToTable("Expressions", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.PatronUser", b => modelBuilder.Entity("NadekoBot.Db.Models.PatronUser", b =>
{ {
b.Property<int>("Id") b.Property<ulong>("UserId")
.ValueGeneratedOnAdd() .ValueGeneratedOnAdd()
.HasColumnType("INTEGER"); .HasColumnType("INTEGER");
@@ -1320,20 +1320,15 @@ namespace NadekoBot.Migrations
b.Property<string>("UniquePlatformUserId") b.Property<string>("UniquePlatformUserId")
.HasColumnType("TEXT"); .HasColumnType("TEXT");
b.Property<ulong>("UserId")
.HasColumnType("INTEGER");
b.Property<DateTime>("ValidThru") b.Property<DateTime>("ValidThru")
.HasColumnType("TEXT"); .HasColumnType("TEXT");
b.HasKey("Id"); b.HasKey("UserId");
b.HasIndex("UniquePlatformUserId") b.HasIndex("UniquePlatformUserId")
.IsUnique(); .IsUnique();
b.HasIndex("UserId"); b.ToTable("Patrons", (string)null);
b.ToTable("Patrons");
}); });
modelBuilder.Entity("NadekoBot.Db.Models.Permissionv2", b => modelBuilder.Entity("NadekoBot.Db.Models.Permissionv2", b =>
@@ -1373,7 +1368,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("Permissions"); b.ToTable("Permissions", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.PlantedCurrency", b => modelBuilder.Entity("NadekoBot.Db.Models.PlantedCurrency", b =>
@@ -1410,7 +1405,7 @@ namespace NadekoBot.Migrations
b.HasIndex("MessageId") b.HasIndex("MessageId")
.IsUnique(); .IsUnique();
b.ToTable("PlantedCurrency"); b.ToTable("PlantedCurrency", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.PlaylistSong", b => modelBuilder.Entity("NadekoBot.Db.Models.PlaylistSong", b =>
@@ -1444,7 +1439,7 @@ namespace NadekoBot.Migrations
b.HasIndex("MusicPlaylistId"); b.HasIndex("MusicPlaylistId");
b.ToTable("PlaylistSong"); b.ToTable("PlaylistSong", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.Quote", b => modelBuilder.Entity("NadekoBot.Db.Models.Quote", b =>
@@ -1480,7 +1475,7 @@ namespace NadekoBot.Migrations
b.HasIndex("Keyword"); b.HasIndex("Keyword");
b.ToTable("Quotes"); b.ToTable("Quotes", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.ReactionRoleV2", b => modelBuilder.Entity("NadekoBot.Db.Models.ReactionRoleV2", b =>
@@ -1521,7 +1516,7 @@ namespace NadekoBot.Migrations
b.HasIndex("MessageId", "Emote") b.HasIndex("MessageId", "Emote")
.IsUnique(); .IsUnique();
b.ToTable("ReactionRoles"); b.ToTable("ReactionRoles", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.Reminder", b => modelBuilder.Entity("NadekoBot.Db.Models.Reminder", b =>
@@ -1558,7 +1553,7 @@ namespace NadekoBot.Migrations
b.HasIndex("When"); b.HasIndex("When");
b.ToTable("Reminders"); b.ToTable("Reminders", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.Repeater", b => modelBuilder.Entity("NadekoBot.Db.Models.Repeater", b =>
@@ -1593,7 +1588,7 @@ namespace NadekoBot.Migrations
b.HasKey("Id"); b.HasKey("Id");
b.ToTable("Repeaters"); b.ToTable("Repeaters", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.RewardedUser", b => modelBuilder.Entity("NadekoBot.Db.Models.RewardedUser", b =>
@@ -1622,7 +1617,7 @@ namespace NadekoBot.Migrations
b.HasIndex("PlatformUserId") b.HasIndex("PlatformUserId")
.IsUnique(); .IsUnique();
b.ToTable("RewardedUsers"); b.ToTable("RewardedUsers", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.RotatingPlayingStatus", b => modelBuilder.Entity("NadekoBot.Db.Models.RotatingPlayingStatus", b =>
@@ -1642,7 +1637,7 @@ namespace NadekoBot.Migrations
b.HasKey("Id"); b.HasKey("Id");
b.ToTable("RotatingStatus"); b.ToTable("RotatingStatus", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.SelfAssignedRole", b => modelBuilder.Entity("NadekoBot.Db.Models.SelfAssignedRole", b =>
@@ -1673,7 +1668,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildId", "RoleId") b.HasIndex("GuildId", "RoleId")
.IsUnique(); .IsUnique();
b.ToTable("SelfAssignableRoles"); b.ToTable("SelfAssignableRoles", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.ShopEntry", b => modelBuilder.Entity("NadekoBot.Db.Models.ShopEntry", b =>
@@ -1719,7 +1714,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("ShopEntry"); b.ToTable("ShopEntry", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.ShopEntryItem", b => modelBuilder.Entity("NadekoBot.Db.Models.ShopEntryItem", b =>
@@ -1741,7 +1736,7 @@ namespace NadekoBot.Migrations
b.HasIndex("ShopEntryId"); b.HasIndex("ShopEntryId");
b.ToTable("ShopEntryItem"); b.ToTable("ShopEntryItem", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.SlowmodeIgnoredRole", b => modelBuilder.Entity("NadekoBot.Db.Models.SlowmodeIgnoredRole", b =>
@@ -1763,7 +1758,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("SlowmodeIgnoredRole"); b.ToTable("SlowmodeIgnoredRole", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.SlowmodeIgnoredUser", b => modelBuilder.Entity("NadekoBot.Db.Models.SlowmodeIgnoredUser", b =>
@@ -1785,7 +1780,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("SlowmodeIgnoredUser"); b.ToTable("SlowmodeIgnoredUser", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.StickyRole", b => modelBuilder.Entity("NadekoBot.Db.Models.StickyRole", b =>
@@ -1811,7 +1806,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildId", "UserId") b.HasIndex("GuildId", "UserId")
.IsUnique(); .IsUnique();
b.ToTable("StickyRoles"); b.ToTable("StickyRoles", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.StreamOnlineMessage", b => modelBuilder.Entity("NadekoBot.Db.Models.StreamOnlineMessage", b =>
@@ -1837,7 +1832,7 @@ namespace NadekoBot.Migrations
b.HasKey("Id"); b.HasKey("Id");
b.ToTable("StreamOnlineMessages"); b.ToTable("StreamOnlineMessages", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.StreamRoleBlacklistedUser", b => modelBuilder.Entity("NadekoBot.Db.Models.StreamRoleBlacklistedUser", b =>
@@ -1862,7 +1857,7 @@ namespace NadekoBot.Migrations
b.HasIndex("StreamRoleSettingsId"); b.HasIndex("StreamRoleSettingsId");
b.ToTable("StreamRoleBlacklistedUser"); b.ToTable("StreamRoleBlacklistedUser", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.StreamRoleSettings", b => modelBuilder.Entity("NadekoBot.Db.Models.StreamRoleSettings", b =>
@@ -1894,7 +1889,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId") b.HasIndex("GuildConfigId")
.IsUnique(); .IsUnique();
b.ToTable("StreamRoleSettings"); b.ToTable("StreamRoleSettings", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.StreamRoleWhitelistedUser", b => modelBuilder.Entity("NadekoBot.Db.Models.StreamRoleWhitelistedUser", b =>
@@ -1919,7 +1914,7 @@ namespace NadekoBot.Migrations
b.HasIndex("StreamRoleSettingsId"); b.HasIndex("StreamRoleSettingsId");
b.ToTable("StreamRoleWhitelistedUser"); b.ToTable("StreamRoleWhitelistedUser", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.TodoModel", b => modelBuilder.Entity("NadekoBot.Db.Models.TodoModel", b =>
@@ -1949,7 +1944,7 @@ namespace NadekoBot.Migrations
b.HasIndex("UserId"); b.HasIndex("UserId");
b.ToTable("Todos"); b.ToTable("Todos", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.UnbanTimer", b => modelBuilder.Entity("NadekoBot.Db.Models.UnbanTimer", b =>
@@ -1974,7 +1969,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("UnbanTimer"); b.ToTable("UnbanTimer", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.UnmuteTimer", b => modelBuilder.Entity("NadekoBot.Db.Models.UnmuteTimer", b =>
@@ -1999,7 +1994,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("UnmuteTimer"); b.ToTable("UnmuteTimer", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.UnroleTimer", b => modelBuilder.Entity("NadekoBot.Db.Models.UnroleTimer", b =>
@@ -2027,7 +2022,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("UnroleTimer"); b.ToTable("UnroleTimer", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.UserXpStats", b => modelBuilder.Entity("NadekoBot.Db.Models.UserXpStats", b =>
@@ -2067,7 +2062,7 @@ namespace NadekoBot.Migrations
b.HasIndex("UserId", "GuildId") b.HasIndex("UserId", "GuildId")
.IsUnique(); .IsUnique();
b.ToTable("UserXpStats"); b.ToTable("UserXpStats", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.VcRoleInfo", b => modelBuilder.Entity("NadekoBot.Db.Models.VcRoleInfo", b =>
@@ -2092,7 +2087,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId"); b.HasIndex("GuildConfigId");
b.ToTable("VcRoleInfo"); b.ToTable("VcRoleInfo", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.WaifuInfo", b => modelBuilder.Entity("NadekoBot.Db.Models.WaifuInfo", b =>
@@ -2127,7 +2122,7 @@ namespace NadekoBot.Migrations
b.HasIndex("WaifuId") b.HasIndex("WaifuId")
.IsUnique(); .IsUnique();
b.ToTable("WaifuInfo"); b.ToTable("WaifuInfo", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.WaifuItem", b => modelBuilder.Entity("NadekoBot.Db.Models.WaifuItem", b =>
@@ -2152,7 +2147,7 @@ namespace NadekoBot.Migrations
b.HasIndex("WaifuInfoId"); b.HasIndex("WaifuInfoId");
b.ToTable("WaifuItem"); b.ToTable("WaifuItem", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.WaifuUpdate", b => modelBuilder.Entity("NadekoBot.Db.Models.WaifuUpdate", b =>
@@ -2184,7 +2179,7 @@ namespace NadekoBot.Migrations
b.HasIndex("UserId"); b.HasIndex("UserId");
b.ToTable("WaifuUpdates"); b.ToTable("WaifuUpdates", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.Warning", b => modelBuilder.Entity("NadekoBot.Db.Models.Warning", b =>
@@ -2227,7 +2222,7 @@ namespace NadekoBot.Migrations
b.HasIndex("UserId"); b.HasIndex("UserId");
b.ToTable("Warnings"); b.ToTable("Warnings", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.WarningPunishment", b => modelBuilder.Entity("NadekoBot.Db.Models.WarningPunishment", b =>
@@ -2258,7 +2253,7 @@ namespace NadekoBot.Migrations
b.HasAlternateKey("GuildId", "Count"); b.HasAlternateKey("GuildId", "Count");
b.ToTable("WarningPunishment"); b.ToTable("WarningPunishment", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.XpCurrencyReward", b => modelBuilder.Entity("NadekoBot.Db.Models.XpCurrencyReward", b =>
@@ -2283,7 +2278,7 @@ namespace NadekoBot.Migrations
b.HasIndex("XpSettingsId"); b.HasIndex("XpSettingsId");
b.ToTable("XpCurrencyReward"); b.ToTable("XpCurrencyReward", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.XpRoleReward", b => modelBuilder.Entity("NadekoBot.Db.Models.XpRoleReward", b =>
@@ -2312,7 +2307,7 @@ namespace NadekoBot.Migrations
b.HasIndex("XpSettingsId", "Level") b.HasIndex("XpSettingsId", "Level")
.IsUnique(); .IsUnique();
b.ToTable("XpRoleReward"); b.ToTable("XpRoleReward", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.XpSettings", b => modelBuilder.Entity("NadekoBot.Db.Models.XpSettings", b =>
@@ -2335,7 +2330,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildConfigId") b.HasIndex("GuildConfigId")
.IsUnique(); .IsUnique();
b.ToTable("XpSettings"); b.ToTable("XpSettings", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.XpShopOwnedItem", b => modelBuilder.Entity("NadekoBot.Db.Models.XpShopOwnedItem", b =>
@@ -2365,7 +2360,7 @@ namespace NadekoBot.Migrations
b.HasIndex("UserId", "ItemType", "ItemKey") b.HasIndex("UserId", "ItemType", "ItemKey")
.IsUnique(); .IsUnique();
b.ToTable("XpShopOwnedItem"); b.ToTable("XpShopOwnedItem", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Services.GreetSettings", b => modelBuilder.Entity("NadekoBot.Services.GreetSettings", b =>
@@ -2401,7 +2396,7 @@ namespace NadekoBot.Migrations
b.HasIndex("GuildId", "GreetType") b.HasIndex("GuildId", "GreetType")
.IsUnique(); .IsUnique();
b.ToTable("GreetSettings"); b.ToTable("GreetSettings", (string)null);
}); });
modelBuilder.Entity("NadekoBot.Db.Models.AntiAltSetting", b => modelBuilder.Entity("NadekoBot.Db.Models.AntiAltSetting", b =>