mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 02:05:19 +02:00
adding zrl support to social graphs
This commit is contained in:
parent
f175af05f9
commit
584ac68ae4
5 changed files with 39 additions and 18 deletions
13
update.php
13
update.php
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
define( 'UPDATE_VERSION' , 1141 );
|
||||
define( 'UPDATE_VERSION' , 1142 );
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -1229,4 +1229,13 @@ function update_1140() {
|
|||
if(! $r)
|
||||
return UPDATE_FAILED ;
|
||||
return UPDATE_SUCCESS ;
|
||||
}
|
||||
}
|
||||
|
||||
function update_1141() {
|
||||
$r = q("alter table glink add zcid int(11) not null after gcid, add index(zcid) ");
|
||||
if(! $r)
|
||||
return UPDATE_FAILED ;
|
||||
return UPDATE_SUCCESS ;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue