ALTER TABLE [SiteSettings_Misc] ADD [StoreVisitSession] bit NOT NULL DEFAULT CAST(0 AS bit); GO INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) VALUES (N'20231227152420_20231227a', N'3.1.10'); GO DROP TABLE [BlockedIP]; GO CREATE TABLE [Blocked] ( [Id] uniqueidentifier NOT NULL, [Key] nvarchar(50) NOT NULL, [IsIPAddress] bit NOT NULL, [BlockedTime] datetime2 NOT NULL, [Forever] bit NOT NULL, [Description] nvarchar(500) NULL, CONSTRAINT [PK_Blocked] PRIMARY KEY ([Id]) ); GO INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) VALUES (N'20240201145138_20240201a', N'3.1.10'); GO