mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-04-29 22:24:42 +00:00
* Remove disable_donation_dialog option * Option to hide donation dialog permanently * fix
5 lines
319 B
SQL
5 lines
319 B
SQL
-- Generate new column last_donation_notification with default value at random time in the
|
|
-- past year (so that users dont see it all at the same time after instance upgrade).
|
|
ALTER TABLE local_user
|
|
ADD COLUMN last_donation_notification timestamptz NOT NULL DEFAULT (now() - (random() * (interval '12 months')));
|
|
|