33 lines
1.2 KiB
SQL
33 lines
1.2 KiB
SQL
-- Restore original Musadaq subscription pricing
|
|
-- Premium pricing justified by AI extraction + JoFotara + mobile app
|
|
|
|
UPDATE subscription_plans SET
|
|
name_ar = 'مجانية', name_en = 'Free',
|
|
max_companies = 1, max_invoices_month = 15, max_users = 1,
|
|
price_jod = 0.00, jofotara_enabled = 1
|
|
WHERE id = 'free';
|
|
|
|
UPDATE subscription_plans SET
|
|
name_ar = 'أساسية', name_en = 'Basic',
|
|
max_companies = 3, max_invoices_month = 100, max_users = 3,
|
|
price_jod = 15.00, jofotara_enabled = 1
|
|
WHERE id = 'basic';
|
|
|
|
UPDATE subscription_plans SET
|
|
name_ar = 'مكتبية', name_en = 'Office',
|
|
max_companies = 10, max_invoices_month = 500, max_users = 10,
|
|
price_jod = 45.00, jofotara_enabled = 1
|
|
WHERE id = 'office';
|
|
|
|
UPDATE subscription_plans SET
|
|
name_ar = 'احترافية', name_en = 'Pro',
|
|
max_companies = 25, max_invoices_month = 2000, max_users = 25,
|
|
price_jod = 99.00, jofotara_enabled = 1
|
|
WHERE id = 'pro';
|
|
|
|
UPDATE subscription_plans SET
|
|
name_ar = 'مؤسسية', name_en = 'Enterprise',
|
|
max_companies = 999, max_invoices_month = 99999, max_users = 999,
|
|
price_jod = 249.00, jofotara_enabled = 1
|
|
WHERE id = 'enterprise';
|