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.20240131_233.SQL | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Codemerx/Gestor.Application.Migration.Files.20240131_233.SQL (limited to 'Codemerx/Gestor.Application.Migration.Files.20240131_233.SQL') diff --git a/Codemerx/Gestor.Application.Migration.Files.20240131_233.SQL b/Codemerx/Gestor.Application.Migration.Files.20240131_233.SQL new file mode 100644 index 0000000..9df1c24 --- /dev/null +++ b/Codemerx/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