Merge branch 'dev/daily-checklist' into 'development'

add master data config checklist

See merge request mbugroup/lti-api!139
This commit is contained in:
Hafizh A. Y.
2026-01-08 02:18:22 +00:00
12 changed files with 537 additions and 13 deletions
@@ -0,0 +1 @@
DROP TABLE IF EXISTS config_checklists;
@@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS config_checklists (
id BIGSERIAL PRIMARY KEY,
date DATE NOT NULL,
percentage_threshold_bad INTEGER NOT NULL,
percentage_threshold_enough INTEGER NOT NULL,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
deleted_at TIMESTAMPTZ
);