-- campo para registro camisetas ALTER TABLE `extracurricular_activities_registration` ADD COLUMN `t_shirt` VARCHAR(45) NULL DEFAULT NULL AFTER `registration_date`; -- parametrización por actividad si se permite o no el registro de camiseta ALTER TABLE `extracurricular_activities` ADD COLUMN `allow_options` SET('REGISTER_TSHIRT') NULL AFTER `name`; -- allow page registro de camiseta INSERT INTO allowed_pages_by_process values ((select serial_prc from process where link_prc = "laravel/public/extracurricularActivity/extracurricular-activities-attendance"), 'ExtracurricularActivityController@getAttendanceExcelReport'); INSERT INTO allowed_pages_by_process values ((select serial_prc from process where link_prc = "laravel/public/extracurricularActivity/extracurricular-activities-attendance"), 'ExtracurricularActivityController@postSaveOptionExtracurricularActivitiesRegistration');