X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=sql%2Ftest_data.mysql;h=2460f7c5680b41bd753dc480a638ac11723e88c0;hb=c66054d28435f089215f8f6a1e581312fc31cbbe;hp=837a7a87a46d063dcadfa8e4aebc89dceb3bb8b0;hpb=8de7047a8762a15823f6bd10b94447d3d83937e2;p=civicrm-core.git diff --git a/sql/test_data.mysql b/sql/test_data.mysql index 837a7a87a4..2460f7c568 100644 --- a/sql/test_data.mysql +++ b/sql/test_data.mysql @@ -1,11 +1,11 @@ INSERT INTO `civicrm_contact_type` - ( `name`, `label`,`image_URL`, `parent_id`, `is_active`,`is_reserved`) + ( `name`, `label`,`image_URL`, `parent_id`, `is_active`, `is_reserved`, `icon`) VALUES - ( 'Student' , 'Student' , NULL, 1, 1, 0), - ( 'Parent' , 'Parent' , NULL, 1, 1, 0), - ( 'Staff' , 'Staff' , NULL, 1, 1, 0), - ( 'Team' , 'Team' , NULL, 3, 1, 0), - ( 'Sponsor' , 'Sponsor' , NULL, 3, 1, 0); + ( 'Student' , 'Student' , NULL, 1, 1, 0, 'fa-graduation-cap'), + ( 'Parent' , 'Parent' , NULL, 1, 1, 0, 'fa-user-circle-o'), + ( 'Staff' , 'Staff' , NULL, 1, 1, 0, 'fa-id-badge'), + ( 'Team' , 'Team' , NULL, 3, 1, 0, 'fa-users'), + ( 'Sponsor' , 'Sponsor' , NULL, 3, 1, 0, 'fa-leaf'); + -