feat: added scenario counter driven by database

This commit is contained in:
straticspaff
2023-07-03 20:29:56 +01:00
parent 76a3d73102
commit a6650bb392
2 changed files with 46 additions and 717 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;