From 674ca83ba9243a9e95a7568c797668dab6aee26a Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 10:35:25 -0300 Subject: feat: upload files --- Gestor.Application.Migration.Files.20210510_118.SQL | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Gestor.Application.Migration.Files.20210510_118.SQL (limited to 'Gestor.Application.Migration.Files.20210510_118.SQL') diff --git a/Gestor.Application.Migration.Files.20210510_118.SQL b/Gestor.Application.Migration.Files.20210510_118.SQL new file mode 100644 index 0000000..3cc72dc --- /dev/null +++ b/Gestor.Application.Migration.Files.20210510_118.SQL @@ -0,0 +1,8 @@ +DECLARE @col_length nvarchar(max) + +SELECT @col_length = COL_LENGTH('[dbo].[adiantamento]', 'datapgt') + +DECLARE @sql NVARCHAR(MAX) = N'UPDATE adiantamento SET Pagamento = datapgt WHERE Pagamento IS NULL AND datapgt IS NOT NULL;' + +IF @col_length IS NOT NULL + exec sp_executesql @sql \ No newline at end of file -- cgit v1.2.3