Browse Source

[PM-4589] Fix 2023-09-11_01_2023-02-FutureMigration (#3373)

pull/3390/head
Oscar Hinton 2 years ago committed by GitHub
parent
commit
330e41a6d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      util/Migrator/DbScripts/2023-09-11_01_2023-02-FutureMigration.sql

12
util/Migrator/DbScripts/2023-09-11_01_2023-02-FutureMigration.sql

@ -1,9 +1,3 @@ @@ -1,9 +1,3 @@
IF TYPE_ID(N'[dbo].[OrganizationUserType]') IS NOT NULL
BEGIN
DROP TYPE [dbo].[OrganizationUserType];
END
GO
IF OBJECT_ID('[dbo].[OrganizationUser_CreateMany]') IS NOT NULL
BEGIN
DROP PROCEDURE [dbo].[OrganizationUser_CreateMany];
@ -15,3 +9,9 @@ BEGIN @@ -15,3 +9,9 @@ BEGIN
DROP PROCEDURE [dbo].[OrganizationUser_UpdateMany];
END
GO
IF TYPE_ID(N'[dbo].[OrganizationUserType]') IS NOT NULL
BEGIN
DROP TYPE [dbo].[OrganizationUserType];
END
GO

Loading…
Cancel
Save