From 225aa1499e37faf9d38257caabbadc68d78b427e Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 12:29:41 -0300 Subject: decompiler.com --- .../Gestor.Application.Migration.Files.20240131_233.SQL | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Decompiler/Gestor.Application.Migration.Files.20240131_233.SQL (limited to 'Decompiler/Gestor.Application.Migration.Files.20240131_233.SQL') diff --git a/Decompiler/Gestor.Application.Migration.Files.20240131_233.SQL b/Decompiler/Gestor.Application.Migration.Files.20240131_233.SQL new file mode 100644 index 0000000..9df1c24 --- /dev/null +++ b/Decompiler/Gestor.Application.Migration.Files.20240131_233.SQL @@ -0,0 +1,11 @@ +IF (object_id( 'fonetipo' ) 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) = 'fonetipo' for xml path('') + ) + EXEC sp_executesql @sql; +END \ No newline at end of file -- cgit v1.2.3