Merge pull request #74 from stratic-dev/feature/scenario-counter

feat: added scenario counter driven by database
This commit is contained in:
wish
2023-10-07 17:33:58 +11:00
committed by GitHub
3 changed files with 231 additions and 716 deletions

View File

@@ -0,0 +1,9 @@
BEGIN;
CREATE TABLE IF NOT EXISTS scenario_counter (
id serial primary key,
scenario_id numeric not null,
category_id numeric not null
);
END;