diff options
author | redmatrix <git@macgirvin.com> | 2016-05-03 18:41:16 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-03 18:41:16 -0700 |
commit | 3df0bb55221317a17d6e898415ba5d33ede7715d (patch) | |
tree | 776d7ecd467768653e162bc3ee523f2b1566af97 /install/schema_mysql.sql | |
parent | dccdeedb75874ac8a244770cc3be0bf9ee71a0cd (diff) | |
download | volse-hubzilla-3df0bb55221317a17d6e898415ba5d33ede7715d.tar.gz volse-hubzilla-3df0bb55221317a17d6e898415ba5d33ede7715d.tar.bz2 volse-hubzilla-3df0bb55221317a17d6e898415ba5d33ede7715d.zip |
some preliminary structural work for app organisation
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r-- | install/schema_mysql.sql | 4 |
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; |