Misha12 / GrillBot

Discord bot with features primarily for VUT FIT discord guild.
https://git.grillbot.cloud/
MIT License
5 stars 5 forks source link

.NET 5, new features, refactoring, fixes, .... #221

Closed Misha12 closed 3 years ago

Misha12 commented 4 years ago
Misha12 commented 4 years ago

207 Migration script

BEGIN TRANSACTION;
GO

DROP TABLE [MathAuditLog];
GO

INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'20201113112754_RemovedMathAuditLog', N'5.0.0');
GO

COMMIT;
GO
Misha12 commented 4 years ago

175 Migration script

BEGIN TRANSACTION;
GO

ALTER TABLE [DiscordUsers] ADD [UnverifyImunityGroup] nvarchar(64) NULL;
GO

INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'20201113124509_UnverifyImunity', N'5.0.0');
GO

COMMIT;
GO