aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-12-17 15:30:26 +0100
committerMario <mario@mariovavti.com>2021-12-17 15:30:26 +0100
commit32a9eaf3b6a68626580078a3302f8dd8e85eb165 (patch)
treedaaeaebb112a3efab55ad0874740afcd5f00b08f /install/schema_mysql.sql
parent91cea1f28a8734f3fbab38260cc301026df7b56b (diff)
downloadvolse-hubzilla-32a9eaf3b6a68626580078a3302f8dd8e85eb165.tar.gz
volse-hubzilla-32a9eaf3b6a68626580078a3302f8dd8e85eb165.tar.bz2
volse-hubzilla-32a9eaf3b6a68626580078a3302f8dd8e85eb165.zip
update db schemas
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r--install/schema_mysql.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index 8267d17f7..054c1da03 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -37,6 +37,7 @@ CREATE TABLE IF NOT EXISTS `abook` (
`abook_incl` text NOT NULL,
`abook_excl` text NOT NULL,
`abook_instance` text NOT NULL,
+ `abook_role` char(191) NOT NULL DEFAULT '',
PRIMARY KEY (`abook_id`),
KEY `abook_account` (`abook_account`),
KEY `abook_channel` (`abook_channel`),
@@ -58,7 +59,8 @@ CREATE TABLE IF NOT EXISTS `abook` (
KEY `abook_unconnected` (`abook_unconnected`),
KEY `abook_self` (`abook_self`),
KEY `abook_not_here` (`abook_not_here`),
- KEY `abook_feed` (`abook_feed`)
+ KEY `abook_feed` (`abook_feed`),
+ KEY `abook_role` (`abook_role`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
CREATE TABLE IF NOT EXISTS `account` (