Download this file

7 lines (7 with data), 220 Bytes

1
2
3
4
5
6
7
-- Jan 13, 2025
-- Adding a table for formulas for resource allocations
CREATE TABLE qiita.allocation_equations (
equation_id SERIAL PRIMARY KEY,
equation_name TEXT NOT NULL,
expression TEXT NOT NULL
);