Files
Erupe/patch-schema/scenarios-counter.sql
2023-07-03 20:29:56 +01: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;