dever 6 years ago
parent
commit
bd6473e0cc
1 changed files with 17 additions and 0 deletions
  1. 17 0
      main/database/version.php

+ 17 - 0
main/database/version.php

@@ -23,6 +23,12 @@ $button = array
 	2 => '不显示',
 );
 
+$update = array
+(
+	1 => '显示',
+	2 => '不显示',
+);
+
 return array
 (
 	# 表名
@@ -141,6 +147,17 @@ return array
 			'cover'		=> 2,
 		),
 
+		'updates'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '是否显示更新提醒',
+			'default' 	=> '2',
+			'desc' 		=> '是否显示更新提醒',
+			'match' 	=> 'is_numeric',
+			'update'	=> 'radio',
+			'option'	=> $update,
+		),
+
 		'vip'		=> array
 		(
 			'type' 		=> 'int-11',