summaryrefslogtreecommitdiff
path: root/Decompiler/Gestor.Application.Migration.Files.20240131_234.SQL
diff options
context:
space:
mode:
Diffstat (limited to 'Decompiler/Gestor.Application.Migration.Files.20240131_234.SQL')
-rw-r--r--Decompiler/Gestor.Application.Migration.Files.20240131_234.SQL11
1 files changed, 11 insertions, 0 deletions
diff --git a/Decompiler/Gestor.Application.Migration.Files.20240131_234.SQL b/Decompiler/Gestor.Application.Migration.Files.20240131_234.SQL
new file mode 100644
index 0000000..9eed697
--- /dev/null
+++ b/Decompiler/Gestor.Application.Migration.Files.20240131_234.SQL
@@ -0,0 +1,11 @@
+IF (object_id( 'tipopagto' ) IS NOT NULL)
+ BEGIN
+ declare @sql nvarchar(max) = (select
+ 'alter table ' + quotename(schema_name(schema_id)) + '.' +
+ quotename(object_name(parent_object_id)) +
+ ' drop constraint '+quotename(name) + ';'
+ from sys.foreign_keys s
+ where object_name(referenced_object_id) = 'tipopagto' for xml path('')
+ )
+ EXEC sp_executesql @sql;
+END \ No newline at end of file