We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c75556 commit dd0ee74Copy full SHA for dd0ee74
qiita_db/support_files/patches/92.sql
@@ -27,3 +27,12 @@ ALTER TABLE qiita.prep_template ADD current_human_filtering boolean DEFAULT Fals
27
-- Adding a new column: reprocess_job_id to qiita.prep_template to keep track of
28
-- the job that reprocessed this prep
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';
qiita_db/support_files/patches/93.sql
0 commit comments