mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-09-02 19:23:49 +00:00
parent
74701af627
commit
a931a4b289
2 changed files with 20 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
ALTER TABLE local_site_rate_limit
|
||||
ALTER register SET DEFAULT 3;
|
||||
|
||||
UPDATE
|
||||
local_site_rate_limit
|
||||
SET
|
||||
register = 3
|
||||
WHERE
|
||||
register = 10;
|
||||
|
10
migrations/2025-04-07-100344_registration-rate-limit/up.sql
Normal file
10
migrations/2025-04-07-100344_registration-rate-limit/up.sql
Normal file
|
@ -0,0 +1,10 @@
|
|||
ALTER TABLE local_site_rate_limit
|
||||
ALTER register SET DEFAULT 10;
|
||||
|
||||
UPDATE
|
||||
local_site_rate_limit
|
||||
SET
|
||||
register = 10
|
||||
WHERE
|
||||
register = 3;
|
||||
|
Loading…
Reference in a new issue