feat: acquire-core full legacy C corpus (~2066 files, build-verified) + generator + inventory
This commit is contained in:
commit
b96cf702ee
2897 changed files with 264970 additions and 0 deletions
23
db/st_ddl_0003.sql
Normal file
23
db/st_ddl_0003.sql
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
-- st_ddl_0003.sql - 정산수수료 DBIO 스키마/뷰 정의 (easy)
|
||||
-- 런타임 PostgreSQL 에 적용. 컴파일에는 불필요.
|
||||
|
||||
CREATE TABLE IF NOT EXISTS st_ledger (
|
||||
key VARCHAR(15) NOT NULL,
|
||||
merch_id VARCHAR(15) NOT NULL,
|
||||
card_no VARCHAR(19) NOT NULL,
|
||||
amount BIGINT NOT NULL DEFAULT 0,
|
||||
biz_date CHAR(8) NOT NULL,
|
||||
status CHAR(1) NOT NULL DEFAULT 'R',
|
||||
fee BIGINT NOT NULL DEFAULT 0,
|
||||
reg_ts TIMESTAMP NOT NULL DEFAULT now(),
|
||||
upd_ts TIMESTAMP,
|
||||
CONSTRAINT pk_st_ledger PRIMARY KEY (key)
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS ix_st_ddl_0003_date_status
|
||||
ON st_ledger (biz_date, status);
|
||||
|
||||
CREATE OR REPLACE VIEW st_ddl_0003_daily_v AS
|
||||
SELECT biz_date, status, count(*) AS cnt, sum(amount) AS total
|
||||
FROM st_ledger
|
||||
GROUP BY biz_date, status;
|
||||
Reference in a new issue