Skip to content

Commit dd0ee74

Browse files
committed
moving changes to patch 92
1 parent 3c75556 commit dd0ee74

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

qiita_db/support_files/patches/92.sql

+9
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,12 @@ ALTER TABLE qiita.prep_template ADD current_human_filtering boolean DEFAULT Fals
2727
-- Adding a new column: reprocess_job_id to qiita.prep_template to keep track of
2828
-- the job that reprocessed this prep
2929
ALTER TABLE qiita.prep_template ADD reprocess_job_id uuid DEFAULT NULL;
30+
31+
-- Jun 19, 2024
32+
-- Adding a new column to the user table that logs when this account was created
33+
-- Usefull e.g. to prune non-verified=inactive user or to plot user growth
34+
35+
ALTER TABLE qiita.qiita_user
36+
ADD creation_timestamp timestamp without time zone DEFAULT NOW();
37+
38+
COMMENT ON COLUMN qiita.qiita_user.creation_timestamp IS 'The date the user account was created';

qiita_db/support_files/patches/93.sql

-8
This file was deleted.

0 commit comments

Comments
 (0)