mirror of
https://github.com/ente-io/ente.git
synced 2025-08-06 06:33:15 +00:00
7 lines
253 B
SQL
7 lines
253 B
SQL
ALTER TABLE storage_bonus
|
|
DROP CONSTRAINT IF EXISTS storage_bonus_type_check;
|
|
|
|
ALTER TABLE storage_bonus
|
|
ADD CONSTRAINT storage_bonus_type_check
|
|
CHECK (type IN ('REFERRAL', 'SIGN_UP', 'ANNIVERSARY', 'ADD_ON_BF_2023', 'ADD_ON_SUPPORT'));
|