From 6564a9e38dd5c58a0012cafb3ab736d935b5eb9e Mon Sep 17 00:00:00 2001 From: naeel Date: Tue, 17 Feb 2026 09:27:48 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20Application.cfc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application.cfc | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/Application.cfc b/Application.cfc index 2390eca..cf64a92 100644 --- a/Application.cfc +++ b/Application.cfc @@ -1,5 +1,5 @@ - + @@ -18,22 +18,31 @@ - + + - INSERT INTO nubes_test_table (test_data) VALUES () + + INSERT INTO nubes_test_table (test_data) VALUES () + - UPDATE nubes_test_table SET test_data = WHERE id = + + UPDATE nubes_test_table SET test_data = WHERE id = + - DELETE FROM nubes_test_table WHERE id = + + DELETE FROM nubes_test_table WHERE id = + + + CREATE TABLE IF NOT EXISTS nubes_test_table (id SERIAL PRIMARY KEY, test_data TEXT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP);