diff --git a/qiita_db/support_files/patches/92.sql b/qiita_db/support_files/patches/92.sql index a8a7d8bb0..e6c2f4b0a 100644 --- a/qiita_db/support_files/patches/92.sql +++ b/qiita_db/support_files/patches/92.sql @@ -27,3 +27,12 @@ ALTER TABLE qiita.prep_template ADD current_human_filtering boolean DEFAULT Fals -- Adding a new column: reprocess_job_id to qiita.prep_template to keep track of -- the job that reprocessed this prep ALTER TABLE qiita.prep_template ADD reprocess_job_id uuid DEFAULT NULL; + +-- Jun 19, 2024 +-- Adding a new column to the user table that logs when this account was created +-- Usefull e.g. to prune non-verified=inactive user or to plot user growth + +ALTER TABLE qiita.qiita_user + ADD creation_timestamp timestamp without time zone DEFAULT NOW(); + +COMMENT ON COLUMN qiita.qiita_user.creation_timestamp IS 'The date the user account was created'; diff --git a/qiita_db/support_files/patches/93.sql b/qiita_db/support_files/patches/93.sql deleted file mode 100644 index 6730f8494..000000000 --- a/qiita_db/support_files/patches/93.sql +++ /dev/null @@ -1,8 +0,0 @@ --- Jun 19, 2024 --- Adding a new column to the user table that logs when this account was created --- Usefull e.g. to prune non-verified=inactive user or to plot user growth - -ALTER TABLE qiita.qiita_user - ADD creation_timestamp timestamp without time zone DEFAULT NOW(); - -COMMENT ON COLUMN qiita.qiita_user.creation_timestamp IS 'The date the user account was created';