From 1e960fa6abc5d0e08dbf9adcf714809b1facf711 Mon Sep 17 00:00:00 2001 From: x2Skyz Date: Mon, 17 Nov 2025 10:01:01 +0700 Subject: [PATCH] -update dbchange -route --- @knowleadge/dbchange/17112025.txt | 7 +++++++ @template/src/routes/route.js | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 @knowleadge/dbchange/17112025.txt diff --git a/@knowleadge/dbchange/17112025.txt b/@knowleadge/dbchange/17112025.txt new file mode 100644 index 0000000..3b73725 --- /dev/null +++ b/@knowleadge/dbchange/17112025.txt @@ -0,0 +1,7 @@ +CREATE TABLE bdgmst ( + bdgseq INTEGER, + bdgnam VARCHAR(150), + bdgcod VARCHAR(3), + bdgttl NUMERIC, + bdgedtdtm CHAR(12) +); diff --git a/@template/src/routes/route.js b/@template/src/routes/route.js index be10822..698eec4 100644 --- a/@template/src/routes/route.js +++ b/@template/src/routes/route.js @@ -1,7 +1,7 @@ import express from 'express' -import { accountingSetup } from '../controllers/accountingSetup.js' -import { accountingSearch } from '../controllers/accountingSearch.js' -import { accountingSum } from '../controllers/accountingSum.js' +import { accountingSetup } from '../controllers/accountingSetupController.js' +import { accountingSearch } from '../controllers/accountingSearchController.js' +import { accountingSum } from '../controllers/accountingSumController.js' // import { authMiddleware } from '../middlewares/auth.js' // import { sendResponse } from '../utils/response.js'