Only quickTasks/ and scheduledTasks/ subdirectories remain tracked since those are actively used by the portal. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
462 B
Text
19 lines
462 B
Text
<cfsetting showdebugoutput="false">
|
|
<cfsetting enablecfoutputonly="true">
|
|
<cfcontent type="application/json; charset=utf-8" reset="true">
|
|
|
|
<cfscript>
|
|
qDesc = queryExecute("SHOW COLUMNS FROM Items", {}, { datasource: "payfrit" });
|
|
|
|
cols = [];
|
|
for (row in qDesc) {
|
|
arrayAppend(cols, {
|
|
"Field": row.Field,
|
|
"Type": row.Type,
|
|
"Null": row.Null,
|
|
"Default": row.Default
|
|
});
|
|
}
|
|
|
|
writeOutput(serializeJSON({ "OK": true, "Columns": cols }));
|
|
</cfscript>
|