Created
February 8, 2021 23:46
-
-
Save imarlovic/70acc6e11db90aeca8db86b0834e7dd8 to your computer and use it in GitHub Desktop.
Revisions
-
imarlovic created this gist
Feb 8, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,59 @@ GO PRINT N'Dropping [HangFire].[FK_HangFire_State_Job]...'; GO ALTER TABLE [HangFire].[State] DROP CONSTRAINT [FK_HangFire_State_Job]; GO PRINT N'Dropping [HangFire].[FK_HangFire_JobParameter_Job]...'; GO ALTER TABLE [HangFire].[JobParameter] DROP CONSTRAINT [FK_HangFire_JobParameter_Job]; GO PRINT N'Dropping [HangFire].[Schema]...'; GO DROP TABLE [HangFire].[Schema]; GO PRINT N'Dropping [HangFire].[Job]...'; GO DROP TABLE [HangFire].[Job]; GO PRINT N'Dropping [HangFire].[State]...'; GO DROP TABLE [HangFire].[State]; GO PRINT N'Dropping [HangFire].[JobParameter]...'; GO DROP TABLE [HangFire].[JobParameter]; GO PRINT N'Dropping [HangFire].[JobQueue]...'; GO DROP TABLE [HangFire].[JobQueue]; GO PRINT N'Dropping [HangFire].[Server]...'; GO DROP TABLE [HangFire].[Server]; GO PRINT N'Dropping [HangFire].[List]...'; GO DROP TABLE [HangFire].[List]; GO PRINT N'Dropping [HangFire].[Set]...'; GO DROP TABLE [HangFire].[Set]; GO PRINT N'Dropping [HangFire].[Counter]...'; GO DROP TABLE [HangFire].[Counter]; GO PRINT N'Dropping [HangFire].[Hash]...'; GO DROP TABLE [HangFire].[Hash]; GO PRINT N'Dropping [HangFire].[AggregatedCounter]...'; GO DROP TABLE [HangFire].[AggregatedCounter]; GO PRINT N'Dropping [HangFire]...'; GO DROP SCHEMA [HangFire]; GO PRINT N'Update complete.'; GO This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ TRUNCATE TABLE [HangFire].[AggregatedCounter] TRUNCATE TABLE [HangFire].[Counter] TRUNCATE TABLE [HangFire].[JobParameter] TRUNCATE TABLE [HangFire].[JobQueue] TRUNCATE TABLE [HangFire].[List] TRUNCATE TABLE [HangFire].[State] DELETE FROM [HangFire].[Job] DBCC CHECKIDENT ('[HangFire].[Job]', reseed, 0) UPDATE [HangFire].[Hash] SET Value = 1 WHERE Field = 'LastJobId'