Skip to content

Commit 067767b

Browse files
author
Adam Robbins-Pianka
committed
Remove prep_x and sample_y from the SQL export
1 parent 0624a85 commit 067767b

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

qiita_db/support_files/qiita-db.sql

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -99,17 +99,6 @@ CREATE TABLE qiita.portal_type (
9999

100100
COMMENT ON TABLE qiita.portal_type IS 'What portals are available to show a study in';
101101

102-
CREATE TABLE qiita.prep_y (
103-
sample_id varchar NOT NULL,
104-
data bigint ,
105-
CONSTRAINT pk_prep_y PRIMARY KEY ( sample_id )
106-
);
107-
108-
COMMENT ON TABLE qiita.prep_y IS 'Information on how raw data y was prepared (prep template)
109-
Linked by y being raw_data_id from raw data table.';
110-
111-
COMMENT ON COLUMN qiita.prep_y.data IS 'STUFFFFF';
112-
113102
CREATE TABLE qiita.preprocessed_data (
114103
preprocessed_data_id bigserial NOT NULL,
115104
preprocessed_params_table varchar NOT NULL,
@@ -214,20 +203,6 @@ CREATE TABLE qiita.required_sample_info_status (
214203
CONSTRAINT pk_sample_status PRIMARY KEY ( required_sample_info_status_id )
215204
);
216205

217-
CREATE TABLE qiita.sample_x (
218-
sample_id varchar NOT NULL,
219-
description varchar NOT NULL,
220-
other_mapping_columns varchar ,
221-
CONSTRAINT pk_study_x_y PRIMARY KEY ( sample_id )
222-
);
223-
224-
COMMENT ON TABLE qiita.sample_x IS 'data for samples in study x (sample template)
225-
x is the study_id from study table
226-
227-
MAKE SURE sample_id IS FK TO sample_id IN required_sample_info TABLE';
228-
229-
COMMENT ON COLUMN qiita.sample_x.other_mapping_columns IS 'Represents whatever other columns go with this study';
230-
231206
CREATE TABLE qiita.severity (
232207
severity_id serial NOT NULL,
233208
severity varchar NOT NULL,

0 commit comments

Comments
 (0)