no this isn't it. well ok, it's part of it, but not the important part. it's still pretty cool.

This commit is contained in:
redmatrix
2015-06-28 21:16:56 -07:00
parent 1ee1b6a334
commit de13497333
11 changed files with 128 additions and 25 deletions

View File

@@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1143 );
define( 'UPDATE_VERSION' , 1144 );
/**
*
@@ -1656,4 +1656,14 @@ function update_r1142() {
return UPDATE_FAILED;
}
function update_r1143() {
$r1 = q("ALTER TABLE abook ADD abook_incl TEXT NOT NULL DEFAULT ''");
$r2 = q("ALTER TABLE abook ADD abook_excl TEXT NOT NULL DEFAULT '' ");
if($r1 && $r2)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}