Files
Erupe/schemas/patch-schema/07-scenarios-counter.sql
2024-01-24 04:35:24 +00: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;