💡create 수정

  1. 프로시져 엑셀 에서 SOURCE 클릭해서 복사 후 MYSQL_workbench DA DEV에 붙여넣기.

  2. 내용 수정

  3. 프로시져 엑셀 audit log type 에서 로그를 확인한 후 E을 복사해 붙여넣기.

    예시)

    DELETE FROM `audit_log_types` WHERE `audit_log_type_identifier` = 'add_nutrient_functionalities';
    INSERT IGNORE `audit_log_types` (`parent_audit_log_type_id`, `audit_log_type_identifier`, `audit_log_type_name`, `register_date`) SELECT `audit_log_type_id`, 'add_nutrient_functionalities', '기능성 카테고리 추가', NOW() FROM `audit_log_types` WHERE `audit_log_type_identifier` = 'nutrient';
    
  4. SQL SAFE - versioning 이동 ( 1분마다 polling)

    [add custom - pre]

    Description : log types

    Script: 3번을 붙여넣기

  5. Deployment dev-stag-pro 순으로 배포

DELETE FROM `audit_log_types` WHERE `audit_log_type_identifier` = 'mod_nutrient_functionalities';
INSERT IGNORE `audit_log_types` (`parent_audit_log_type_id`, `audit_log_type_identifier`, `audit_log_type_name`, `register_date`) SELECT `audit_log_type_id`, 'mod_nutrient_functionalities', '기능성 카테고리 수정', NOW() FROM `audit_log_types` WHERE `audit_log_type_identifier` = 'nutrient';