Merge pull request #24192 from demeritcowboy/php81-frontend4
[civicrm-core.git] / sql / test_data.mysql
1
2 INSERT INTO `civicrm_contact_type`
3 ( `name`, `label`,`image_URL`, `parent_id`, `is_active`, `is_reserved`, `icon`)
4 VALUES
5 ( 'Student' , 'Student' , NULL, 1, 1, 0, 'fa-graduation-cap'),
6 ( 'Parent' , 'Parent' , NULL, 1, 1, 0, 'fa-user-circle-o'),
7 ( 'Staff' , 'Staff' , NULL, 1, 1, 0, 'fa-id-badge'),
8 ( 'Team' , 'Team' , NULL, 3, 1, 0, 'fa-users'),
9 ( 'Sponsor' , 'Sponsor' , NULL, 3, 1, 0, 'fa-leaf');
10
11