mirror of
https://github.com/friendica/friendica
synced 2025-04-26 14:30:13 +00:00
backend for delegating forums
This commit is contained in:
parent
10f768630b
commit
167ab537b5
6 changed files with 103 additions and 27 deletions
14
update.php
14
update.php
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
define( 'UPDATE_VERSION' , 1116 );
|
||||
define( 'UPDATE_VERSION' , 1117 );
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -997,3 +997,15 @@ function update_1115() {
|
|||
ADD INDEX (`moderated`) ");
|
||||
}
|
||||
|
||||
|
||||
function update_1116() {
|
||||
q("create table if not exists `manage` {
|
||||
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
|
||||
`uid` INT NOT NULL ,
|
||||
`mid` INT NOT NULL,
|
||||
INDEX ( `uid` ),
|
||||
INDEX ( `mid` )
|
||||
) ENGINE = MYISAM ");
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue