Add release-notes/5.51.2.md
[civicrm-core.git] / sql / test_data.mysql
CommitLineData
6a488035
TO
1
2 INSERT INTO `civicrm_contact_type`
033dcbb6 3 ( `name`, `label`,`image_URL`, `parent_id`, `is_active`, `is_reserved`, `icon`)
6a488035 4 VALUES
033dcbb6
CW
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
6a488035 11