mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-12 23:14:36 +01:00
9 lines
156 B
PL/PgSQL
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; |