aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-05-03 21:50:34 -0400
committerAndrew Manning <tamanning@zoho.com>2016-05-03 21:50:34 -0400
commite4a2aacd1d2f852264319aff848257349575131e (patch)
treea0d25ece0130fce219cc4df6950f7ab5d41b5c7b /install/schema_mysql.sql
parent5686ee13b4540bfc0ce6c40f07b6e43c3c55e9a8 (diff)
parent45c7a03a0d3e534ee121a632fc279c353015b876 (diff)
downloadvolse-hubzilla-e4a2aacd1d2f852264319aff848257349575131e.tar.gz
volse-hubzilla-e4a2aacd1d2f852264319aff848257349575131e.tar.bz2
volse-hubzilla-e4a2aacd1d2f852264319aff848257349575131e.zip
Merge remote-tracking branch 'upstream/dev' into plugin-repo
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r--install/schema_mysql.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index 2305d4a0b..4751106da 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -123,6 +123,8 @@ CREATE TABLE IF NOT EXISTS `app` (
`app_price` char(255) NOT NULL DEFAULT '',
`app_page` char(255) NOT NULL DEFAULT '',
`app_requires` char(255) NOT NULL DEFAULT '',
+ `app_deleted` int(11) NOT NULL DEFAULT '0',
+ `app_system` int(11) NOT NULL DEFAULT '0',
`app_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`app_edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
@@ -134,6 +136,8 @@ CREATE TABLE IF NOT EXISTS `app` (
KEY `app_channel` (`app_channel`),
KEY `app_price` (`app_price`),
KEY `app_created` (`app_created`),
+ KEY `app_deleted` (`app_deleted`),
+ KEY `app_system` (`app_system`),
KEY `app_edited` (`app_edited`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;