From fc13337bb826b21f9997b582e5140f571937e946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Mon, 20 Jul 2026 08:32:55 +0400 Subject: [PATCH] =?UTF-8?q?fix:=20#tableName#=20outside=20cfoutput=20?= =?UTF-8?q?=E2=80=94=20wrap=20in=20cfoutput?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application.cfc | 5 ++++- index.cfm | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Application.cfc b/Application.cfc index 5aeb1a4..e1821d9 100644 --- a/Application.cfc +++ b/Application.cfc @@ -68,7 +68,10 @@ - CREATE TABLE IF NOT EXISTS #tableName# ( + DROP TABLE IF EXISTS #tableName# + + + CREATE TABLE #tableName# ( id SERIAL PRIMARY KEY, value TEXT NOT NULL DEFAULT '' ) diff --git a/index.cfm b/index.cfm index f0c2f67..5c8a66d 100644 --- a/index.cfm +++ b/index.cfm @@ -84,7 +84,7 @@ - CRUD — #tableName# + CRUD — <cfoutput>#tableName#</cfoutput>