-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e17e084
commit af805a5
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -190,6 +190,17 @@ CREATE TABLE proj_calib_curves | |
PRIMARY KEY (id_project, id_calib_curves) | ||
); | ||
|
||
-- Ratio table is used to store coefficient and order to calculate concentration | ||
-- of metabolites from the area | ||
CREATE TABLE ratio | ||
( | ||
id_mol VARCHAR(52), | ||
id_project SERIAL REFERENCES project (id) ON DELETE CASCADE, | ||
coef FLOAT, | ||
ord FLOAT, | ||
PRIMARY KEY (id_mol, id_project) | ||
); | ||
|
||
INSERT INTO users (name, email, hash, team) | ||
VALUES | ||
('root_ep2m2', '[email protected]', | ||
|