Add ISO-style country codes and Ethiopian regional states to initial and follow-up migrations. Co-authored-by: Cursor <cursoragent@cursor.com>
26 lines
1.2 KiB
SQL
26 lines
1.2 KiB
SQL
INSERT INTO field_options (field_key, code, label, display_order, status) VALUES
|
|
('country', 'ET', 'Ethiopia', 1, 'ACTIVE'),
|
|
('country', 'ER', 'Eritrea', 2, 'ACTIVE'),
|
|
('country', 'DJ', 'Djibouti', 3, 'ACTIVE'),
|
|
('country', 'SO', 'Somalia', 4, 'ACTIVE'),
|
|
('country', 'KE', 'Kenya', 5, 'ACTIVE'),
|
|
('country', 'SD', 'Sudan', 6, 'ACTIVE'),
|
|
('country', 'SS', 'South Sudan', 7, 'ACTIVE'),
|
|
('country', 'UG', 'Uganda', 8, 'ACTIVE'),
|
|
('country', 'RW', 'Rwanda', 9, 'ACTIVE'),
|
|
('country', 'TZ', 'Tanzania', 10, 'ACTIVE'),
|
|
('country', 'EG', 'Egypt', 11, 'ACTIVE'),
|
|
('country', 'NG', 'Nigeria', 12, 'ACTIVE'),
|
|
('country', 'ZA', 'South Africa', 13, 'ACTIVE'),
|
|
('country', 'US', 'United States', 20, 'ACTIVE'),
|
|
('country', 'GB', 'United Kingdom', 21, 'ACTIVE'),
|
|
('country', 'CA', 'Canada', 22, 'ACTIVE'),
|
|
('country', 'DE', 'Germany', 23, 'ACTIVE'),
|
|
('country', 'FR', 'France', 24, 'ACTIVE'),
|
|
('country', 'IN', 'India', 25, 'ACTIVE'),
|
|
('country', 'CN', 'China', 26, 'ACTIVE'),
|
|
('country', 'SA', 'Saudi Arabia', 27, 'ACTIVE'),
|
|
('country', 'AE', 'United Arab Emirates', 28, 'ACTIVE'),
|
|
('country', 'OTHER', 'Other', 99, 'ACTIVE')
|
|
ON CONFLICT (field_key, code) DO NOTHING;
|