Checking STRUCTURE phase 2
ALTER TABLE physic_list ADD `physic_group_id` INT NULL
ALTER TABLE physic_items ADD `physic_group_id` INT NULL
ALTER TABLE physic_group ADD `physic_group_name` VARCHAR(150) NOT NULL
ALTER TABLE operation_recovery_status ADD `recovery_status_name` VARCHAR(100) NOT NULL
ALTER TABLE operation_preop_problem ADD `operation_preop_name` VARCHAR(150) NOT NULL
ALTER TABLE operation_list ADD `confirm_complete` CHAR(1) NULL
ALTER TABLE operation_list ADD `confirm_receive` CHAR(1) NULL
ALTER TABLE operation_list ADD `request_operation_time` TIME NULL
ALTER TABLE operation_list ADD `request_operation_date` DATE NULL
ALTER TABLE operation_group ADD `operation_group_name` VARCHAR(100) NOT NULL
ALTER TABLE operation_detail_position ADD `operation_position_name` VARCHAR(100) NOT NULL
ALTER TABLE operation_detail ADD `wound_type` VARCHAR(100) NULL
ALTER TABLE operation_detail ADD `wound_qty` INT NULL
ALTER TABLE operation_detail ADD `wound_price` DOUBLE(15,3) NULL
ALTER TABLE operation_detail ADD `operation_position` INT NULL
ALTER TABLE operation_anes_monitor ADD `anes_monitor_name` VARCHAR(200) NOT NULL
ALTER TABLE operation_anes ADD `doctor2` VARCHAR(6) NULL
ALTER TABLE operation_airway_solution ADD `airway_solution_name` VARCHAR(200) NOT NULL
ALTER TABLE operation_airway_problem ADD `airway_problem_name` VARCHAR(200) NOT NULL
ALTER TABLE oapp_limit ADD `oapp_limit` INT NOT NULL
ALTER TABLE oapp_limit ADD `oapp_clinic` CHAR(3) NOT NULL
ALTER TABLE oapp_limit ADD `oapp_date` DATE NOT NULL
CREATE TABLE physic_group ( `physic_group_id` INT NOT NULL )
CREATE TABLE operation_recovery_status ( `recovery_status_id` INT NOT NULL )
CREATE TABLE operation_preop_problem ( `operation_preop_id` INT NOT NULL )
CREATE TABLE operation_group ( `operation_group_id` INT NOT NULL )
CREATE TABLE operation_detail_position ( `operation_position` INT NOT NULL )
CREATE TABLE operation_anes_monitor ( `anes_monitor_id` INT NOT NULL )
CREATE TABLE operation_airway_solution ( `airway_solution_id` INT NOT NULL )
CREATE TABLE operation_airway_problem ( `airway_problem_id` INT NOT NULL )
CREATE TABLE oapp_limit ( `oapp_limit_id` INT NOT NULL )
Checking STRUCTURE phase 1