aboutsummaryrefslogtreecommitdiffstats
path: root/install/database.sql
diff options
context:
space:
mode:
Diffstat (limited to 'install/database.sql')
-rw-r--r--install/database.sql6
1 files changed, 5 insertions, 1 deletions
diff --git a/install/database.sql b/install/database.sql
index 31fa68e9d..0de5879a2 100644
--- a/install/database.sql
+++ b/install/database.sql
@@ -94,13 +94,17 @@ CREATE TABLE IF NOT EXISTS `app` (
`app_photo` char(255) NOT NULL DEFAULT '',
`app_version` char(255) NOT NULL DEFAULT '',
`app_channel` int(11) NOT NULL DEFAULT '0',
+ `app_addr` char(255) NOT NULL DEFAULT '',
+ `app_price` char(255) NOT NULL DEFAULT '',
+ `app_page` char(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `app_id` (`app_id`),
KEY `app_name` (`app_name`),
KEY `app_url` (`app_url`),
KEY `app_photo` (`app_photo`),
KEY `app_version` (`app_version`),
- KEY `app_channel` (`app_channel`)
+ KEY `app_channel` (`app_channel`),
+ KEY `app_price` (`app_price`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;