aboutsummaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2018-09-27 23:48:25 +0200
committerMax Kostikov <max@kostikov.co>2018-09-27 23:48:25 +0200
commit11945ce7bcabd6a211cf3005a5d28c0015633cd4 (patch)
tree6fc743220f4d82e0865047930a6c77999bd87ea0 /install
parentbb3d908bcf89536b418b7fca517d03655c244df5 (diff)
downloadvolse-hubzilla-11945ce7bcabd6a211cf3005a5d28c0015633cd4.tar.gz
volse-hubzilla-11945ce7bcabd6a211cf3005a5d28c0015633cd4.tar.bz2
volse-hubzilla-11945ce7bcabd6a211cf3005a5d28c0015633cd4.zip
Update schema_mysql.sql
Diffstat (limited to 'install')
-rw-r--r--install/schema_mysql.sql5
1 files changed, 2 insertions, 3 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index 9b78ae8d4..a5db8e184 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -1,4 +1,3 @@
-
CREATE TABLE IF NOT EXISTS `abconfig` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`chan` int(10) unsigned NOT NULL DEFAULT 0 ,
@@ -462,7 +461,7 @@ CREATE TABLE IF NOT EXISTS `event` (
KEY `event_priority` (`event_priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-CREATE TABLE IF NOT EXISTS `groups` (
+CREATE TABLE IF NOT EXISTS `pgrp` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`hash` char(191) NOT NULL DEFAULT '',
`uid` int(10) unsigned NOT NULL DEFAULT 0 ,
@@ -477,7 +476,7 @@ CREATE TABLE IF NOT EXISTS `groups` (
KEY `gname` (`gname`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-CREATE TABLE IF NOT EXISTS `group_member` (
+CREATE TABLE IF NOT EXISTS `pgrp_member` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(10) unsigned NOT NULL DEFAULT 0 ,
`gid` int(10) unsigned NOT NULL DEFAULT 0 ,