[server] Fix expiry time for free users (#6213)
## Description
Fix the bug introduced by
69c71d23c3
where we reset the expiry-time for free users.
This commit is contained in:
1
server/migrations/101_fix_free_storage_expiry.down.sql
Normal file
1
server/migrations/101_fix_free_storage_expiry.down.sql
Normal file
@@ -0,0 +1 @@
|
||||
UPDATE subscriptions SET expiry_time = 1749355117000000 where storage = 10737418240 and product_id = 'free';
|
||||
1
server/migrations/101_fix_free_storage_expiry.up.sql
Normal file
1
server/migrations/101_fix_free_storage_expiry.up.sql
Normal file
@@ -0,0 +1 @@
|
||||
UPDATE subscriptions SET expiry_time = 4749355117000000 where storage = 10737418240 and product_id = 'free';
|
||||
Reference in New Issue
Block a user