整体调整
This commit is contained in:
22
docs/databases/tables_create.sql
Normal file
22
docs/databases/tables_create.sql
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
CREATE TABLE `app_version` (
|
||||
`id` bigint(32) NOT NULL AUTO_INCREMENT COMMENT 'ID,唯一编号',
|
||||
`appName` varchar(100) NOT NULL DEFAULT '汇融云链' COMMENT '应用名称',
|
||||
`versionCode` int(11) NOT NULL DEFAULT '101' COMMENT '版本编码',
|
||||
`versionName` varchar(100) NOT NULL DEFAULT '101' COMMENT '版本号',
|
||||
`downloadUrl` varchar(1024) DEFAULT NULL COMMENT '下载地址',
|
||||
`versionInfo` varchar(1024) DEFAULT NULL COMMENT '版本描述',
|
||||
`isAlpha` int(11) NOT NULL DEFAULT '0' COMMENT '是否内测:0否,1是',
|
||||
`fileName` varchar(1024) DEFAULT NULL COMMENT '文件名',
|
||||
`forceUpdate` int(11) NOT NULL DEFAULT '1' COMMENT '是否强制升级',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
insert into app_version(versionCode,versionName,downloadUrl,versionInfo)
|
||||
values (101,'101','http://mall.yyundong.com/apks/mall-101.apk','初始版本')
|
||||
|
||||
insert into app_version(versionCode,versionName,downloadUrl,versionInfo,fileName)
|
||||
values (1002,'1.0.0.2','http://mall.yyundong.com/apks/mall-1002.apk','BUG修复,功能完善','mall-1002.apk')
|
||||
|
||||
insert into app_version(versionCode,versionName,downloadUrl,versionInfo,fileName)
|
||||
values (1003,'1.0.0.3','http://mall.yyundong.com/apks/mall-1003.apk','登录方式切换的Bug修复;登录及退出后本地缓存数据问题的修复。','mall-1003.apk')
|
||||
Reference in New Issue
Block a user