From 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 10:38:18 -0300 Subject: chore: location --- Codemerx/Gestor.Application.Migration.Files.20210302_102.SQL | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Codemerx/Gestor.Application.Migration.Files.20210302_102.SQL (limited to 'Codemerx/Gestor.Application.Migration.Files.20210302_102.SQL') diff --git a/Codemerx/Gestor.Application.Migration.Files.20210302_102.SQL b/Codemerx/Gestor.Application.Migration.Files.20210302_102.SQL new file mode 100644 index 0000000..40a967c --- /dev/null +++ b/Codemerx/Gestor.Application.Migration.Files.20210302_102.SQL @@ -0,0 +1,10 @@ +DECLARE @fk_name NVARCHAR(MAX) + +SELECT TOP 1 @fk_name = name +FROM sys.foreign_keys +WHERE parent_object_id = object_id('adiantamento') AND object_name(referenced_object_id) = 'tipopagto' + +DECLARE @sql NVARCHAR(MAX) = N'ALTER TABLE adiantamento DROP CONSTRAINT ' + @fk_name + +IF @fk_name IS NOT NULL + exec sp_executesql @sql \ No newline at end of file -- cgit v1.2.3