File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
qiita_db/support_files/patches Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -27,3 +27,12 @@ ALTER TABLE qiita.prep_template ADD current_human_filtering boolean DEFAULT Fals
27
27
-- Adding a new column: reprocess_job_id to qiita.prep_template to keep track of
28
28
-- the job that reprocessed this prep
29
29
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' ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments