diff --git a/Application.cfc b/Application.cfc index bf8460c..2390eca 100644 --- a/Application.cfc +++ b/Application.cfc @@ -1,9 +1,7 @@ - - + - @@ -12,59 +10,34 @@ - - - + - - - - - - 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 - ); - + CREATE TABLE IF NOT EXISTS nubes_test_table (id SERIAL PRIMARY KEY, test_data TEXT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP); - - \ No newline at end of file