INSERT INTO system_settings (setting_key, setting_value, description, updated_at) VALUES
('institute_name','Crescent College of Accountancy','Institution name',NOW()),
('system_title','CCA Media Recording System','System title',NOW()),
('default_timezone','Asia/Karachi','Default timezone',NOW()),
('notification_email','shahidmunir@crescentcollege.edu.pk','Operational notification email',NOW()),
('enable_email_notifications','1','Enable email notifications',NOW()),
('allow_cameraman_unscheduled_request','0','Allow cameraman unscheduled request',NOW()),
('show_sunday_recordings','1','Show Sunday recordings',NOW()),
('auto_release_resources_on_cancel','1','Release resources on cancel',NOW()),
('auto_release_resources_on_complete','1','Release resources on complete',NOW())
ON DUPLICATE KEY UPDATE setting_value = VALUES(setting_value), description = VALUES(description), updated_at = NOW();
