Add "channels" field to profile table.

This commit is contained in:
Thomas Willingham
2013-03-20 03:17:07 +00:00
parent 9d6a4093ba
commit 897910b5c9
3 changed files with 7 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1036 );
define( 'UPDATE_VERSION' , 1037 );
/**
*
@@ -462,3 +462,7 @@ KEY `k` ( `k` )
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
function update_r1036() {
q("ALTER TABLE `profile` ADD `channels` TEXT NOT NULL AFTER `contact` ");
}