aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-07-07 16:44:58 -0700
committerredmatrix <git@macgirvin.com>2016-07-07 16:44:58 -0700
commite11330a5c8e5111d08d6aee1f4dc6dda6f7c7f2a (patch)
tree5550a81eee45c59574d94fbac9176449aa69b0e7 /install/schema_mysql.sql
parent08a4763bfff2becc750185f99a99919e2425ab5f (diff)
downloadvolse-hubzilla-e11330a5c8e5111d08d6aee1f4dc6dda6f7c7f2a.tar.gz
volse-hubzilla-e11330a5c8e5111d08d6aee1f4dc6dda6f7c7f2a.tar.bz2
volse-hubzilla-e11330a5c8e5111d08d6aee1f4dc6dda6f7c7f2a.zip
revise how we store perm_limits
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r--install/schema_mysql.sql12
1 files changed, 0 insertions, 12 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index 223f94162..9a67cada0 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -904,18 +904,6 @@ CREATE TABLE IF NOT EXISTS `pconfig` (
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-create table if not exists perm_limits {
- id int(10) not null AUTO_INCREMENT,
- perm varchar(64) not null default '',
- channel_id int(10) unsigned not null default 0,
- perm_limit int(10) unsigned not null default 0,
- PRIMARY KEY (`id`),
- KEY `perm` (`perm`),
- KEY `channel_id` (`channel_id`),
- KEY `perm_limit` (`perm_limit`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-
-
CREATE TABLE IF NOT EXISTS `photo` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`aid` int(10) unsigned NOT NULL DEFAULT '0',