wanghui hace 8 años
padre
commit
7c07803252
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  1. 13 0
      schema/20170726-alert.sql

+ 13 - 0
schema/20170726-alert.sql

@@ -0,0 +1,13 @@
+alter table achievement add column international_flag int(1)  default 0 comment '是否国际化  0-否  1-是';
+alter table achievement add column country_name_zh varchar(32) default '中国' comment '国际中文名称';
+alter table user_identity add column international_flag int(1)  default 0 comment '是否国际化  0-否  1-是';
+alter table organization_identity add column international_flag int(1) default 0 comment '是否国际化 0-否 1-是';
+alter table organization_info add column country_name_zh varchar(32) default '中国' comment '国际中文名称';
+
+CREATE TABLE `country_code` (
+  `country_name_en` varchar(32) NOT NULL COMMENT '英文全称',
+  `country_name_zh` varchar(32) NOT NULL COMMENT '中文全称',
+  `region_code` char(8) NOT NULL COMMENT '国际地区编码',
+  `tel_code` int(8) DEFAULT NULL COMMENT '电话代码',
+  PRIMARY KEY (`country_name_en`)
+);