2017-05-10.sql 537 B

1234567891011121314
  1. alter table `patent_info`
  2. add column `contract_id` VARCHAR(36) null comment '合同ID' after `uid`;
  3. alter table `copyright_info`
  4. add column `contract_id` VARCHAR(36) null comment '合同ID' after `uid`;
  5. alter table `org_cognizance`
  6. add column `contract_id` VARCHAR(36) null comment '合同ID' after `uid`;
  7. alter table `tech_project`
  8. add column `contract_id` VARCHAR(36) null comment '合同ID' after `uid`;
  9. alter table `tech_project`
  10. add column `principal` VARCHAR(36) null comment '负责人' after `founder`;