Skip to content

Commit 7d42b84

Browse files
committed
clean db files + add human_reads_filter_method
1 parent bcb4433 commit 7d42b84

File tree

4 files changed

+230
-92
lines changed

4 files changed

+230
-92
lines changed

qiita_db/support_files/patches/92.sql

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,28 @@ ALTER TABLE qiita.qiita_user
3939
ADD creation_timestamp timestamp without time zone DEFAULT NOW();
4040

4141
COMMENT ON COLUMN qiita.qiita_user.creation_timestamp IS 'The date the user account was created';
42+
43+
-- Jun 28, 2024
44+
-- These columns were added by mistake to qiita-db-unpatched.sql in PR:
45+
-- https://github.com/qiita-spots/qiita/pull/3412 so adding here now
46+
47+
ALTER TABLE qiita.qiita_user ADD social_orcid character varying DEFAULT NULL;
48+
ALTER TABLE qiita.qiita_user ADD social_researchgate character varying DEFAULT NULL;
49+
ALTER TABLE qiita.qiita_user ADD social_googlescholar character varying DEFAULT NULL;
50+
51+
-- Add human_reads_filter_method so we can keep track of the available methods
52+
-- and link them to the preparations
53+
54+
CREATE TABLE qiita.human_reads_filter_method (
55+
human_reads_filter_method_id bigint NOT NULL,
56+
human_reads_filter_method_method character varying NOT NULL;
57+
CONSTRAINT pk_human_reads_filter_method_id PRIMARY KEY (
58+
human_reads_filter_method_id )
59+
);
60+
61+
ALTER TABLE qiita.prep_template
62+
ADD human_reads_filter_method_id bigint DEFAULT NULL;
63+
ALTER TABLE qiita.prep_template
64+
ADD CONSTRAINT fk_human_reads_filter_method
65+
FOREIGN KEY ( human_reads_filter_method_id )
66+
REFERENCES qiita.human_reads_filter_method ( human_reads_filter_method_id );

qiita_db/support_files/qiita-db-unpatched.sql

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1888,10 +1888,7 @@ CREATE TABLE qiita.qiita_user (
18881888
user_verify_code character varying,
18891889
pass_reset_code character varying,
18901890
pass_reset_timestamp timestamp without time zone,
1891-
receive_processing_job_emails boolean DEFAULT false,
1892-
social_orcid character varying DEFAULT NULL,
1893-
social_researchgate character varying DEFAULT NULL,
1894-
social_googlescholar character varying DEFAULT NULL
1891+
receive_processing_job_emails boolean DEFAULT false
18951892
);
18961893

18971894

qiita_db/support_files/qiita-db.dbs

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -735,6 +735,13 @@
735735
<column name="filepath_type" />
736736
</index>
737737
</table>
738+
<table name="human_reads_filter_method" prior="human_reads_filter" >
739+
<column name="human_reads_filter_method_id" type="bigint" jt="-5" mandatory="y" />
740+
<column name="human_reads_filter_method_name" type="varchar" jt="12" mandatory="y" />
741+
<index name="pk_human_reads_filter_method_human_reads_filter_method_id" unique="PRIMARY_KEY" >
742+
<column name="human_reads_filter_method_id" />
743+
</index>
744+
</table>
738745
<table name="investigation" >
739746
<comment><![CDATA[Overarching investigation information.An investigation comprises one or more individual studies.]]></comment>
740747
<column name="investigation_id" type="bigint" length="19" decimal="0" jt="-5" mandatory="y" >
@@ -1007,6 +1014,9 @@
10071014
<column name="reprocess_job_id" type="uuid" jt="1111" >
10081015
<defo><![CDATA[NULL]]></defo>
10091016
</column>
1017+
<column name="human_reads_filter_method_id" type="bigint" jt="-5" >
1018+
<defo><![CDATA[NULL]]></defo>
1019+
</column>
10101020
<index name="pk_prep_template" unique="PRIMARY_KEY" >
10111021
<column name="prep_template_id" />
10121022
</index>
@@ -1265,6 +1275,19 @@
12651275
<column name="receive_processing_job_emails" type="boolean" jt="-7" mandatory="y" >
12661276
<defo><![CDATA[false]]></defo>
12671277
</column>
1278+
<column name="social_orcid" type="varchar" jt="12" >
1279+
<defo><![CDATA[NULL]]></defo>
1280+
</column>
1281+
<column name="social_researchgate" type="varchar" jt="12" >
1282+
<defo><![CDATA[NULL]]></defo>
1283+
</column>
1284+
<column name="social_googlescholar" type="varchar" jt="12" >
1285+
<defo><![CDATA[NULL]]></defo>
1286+
</column>
1287+
<column name="creation_timestamp" type="timestamp" jt="93" >
1288+
<defo><![CDATA[NOW()]]></defo>
1289+
<comment><![CDATA[The date the user account was created]]></comment>
1290+
</column>
12681291
<index name="pk_user" unique="PRIMARY_KEY" >
12691292
<column name="email" />
12701293
</index>
@@ -1370,6 +1393,13 @@
13701393
</column>
13711394
<column name="memory_used" type="bigint" jt="-5" />
13721395
<column name="walltime_used" type="integer" jt="4" />
1396+
<column name="job_start" type="text" jt="12" />
1397+
<column name="node_name" type="varchar" jt="12" >
1398+
<defo><![CDATA[NULL]]></defo>
1399+
</column>
1400+
<column name="node_model" type="varchar" jt="12" >
1401+
<defo><![CDATA[NULL]]></defo>
1402+
</column>
13731403
<index name="pk_slurm_resource_allocations_processing_job_id" unique="PRIMARY_KEY" >
13741404
<column name="processing_job_id" />
13751405
</index>
@@ -2098,6 +2128,7 @@ $function$
20982128
<entity schema="qiita" name="environmental_package" color="C7F4BE" x="752" y="960" />
20992129
<entity schema="qiita" name="filepath" color="BED3F4" x="2944" y="1024" />
21002130
<entity schema="qiita" name="filepath_type" color="BED3F4" x="2960" y="1296" />
2131+
<entity schema="qiita" name="human_reads_filter_method" color="C1D8EE" x="2304" y="1312" />
21012132
<entity schema="qiita" name="investigation" color="C7F4BE" x="704" y="464" />
21022133
<entity schema="qiita" name="investigation_study" color="C7F4BE" x="736" y="688" />
21032134
<entity schema="qiita" name="logging" color="F4DDBE" x="1760" y="320" />
@@ -2125,14 +2156,14 @@ $function$
21252156
<entity schema="qiita" name="processing_job_workflow" color="F4DDBE" x="1600" y="1168" />
21262157
<entity schema="qiita" name="processing_job_workflow_root" color="F4DDBE" x="1600" y="1056" />
21272158
<entity schema="qiita" name="publication" color="F4DDBE" x="3232" y="832" />
2128-
<entity schema="qiita" name="qiita_user" color="D1BEF4" x="64" y="1232" />
2159+
<entity schema="qiita" name="qiita_user" color="D1BEF4" x="48" y="1216" />
21292160
<entity schema="qiita" name="reference" color="BED3F4" x="3248" y="1024" />
21302161
<entity schema="qiita" name="restrictions" color="BED3F4" x="2768" y="1424" />
21312162
<entity schema="qiita" name="sample_template_filepath" color="BED3F4" x="2720" y="1296" />
21322163
<entity schema="qiita" name="sample_x" color="BED3F4" x="912" y="1408" />
21332164
<entity schema="qiita" name="settings" color="F82E15" x="64" y="160" />
21342165
<entity schema="qiita" name="severity" color="F4DDBE" x="1632" y="240" />
2135-
<entity schema="qiita" name="slurm_resource_allocations" color="F4DDBE" x="1888" y="640" />
2166+
<entity schema="qiita" name="slurm_resource_allocations" color="F4DDBE" x="1888" y="624" />
21362167
<entity schema="qiita" name="software" color="F4DDBE" x="3232" y="320" />
21372168
<entity schema="qiita" name="software_artifact_type" color="BEBEF4" x="2128" y="304" />
21382169
<entity schema="qiita" name="software_command" color="F4DDBE" x="2880" y="320" />

0 commit comments

Comments
 (0)