Files
Erupe/patch-schema/07-scenarios-counter.sql
2023-10-07 17:33:40 +11:00

9 lines
156 B
PL/PgSQL

BEGIN;
CREATE TABLE IF NOT EXISTS scenario_counter (
id serial primary key,
scenario_id numeric not null,
category_id numeric not null
);
END;