diff options
Diffstat (limited to 'updates.sql')
-rw-r--r-- | updates.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/updates.sql b/updates.sql index de7bfa1e4..b7e2ab3ea 100644 --- a/updates.sql +++ b/updates.sql @@ -25,4 +25,5 @@ ALTER TABLE `profile` DROP `age`; ALTER TABLE `profile` CHANGE `school` `education` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL ; ALTER TABLE `profile` DROP `employer` ; -ALTER TABLE `profile` ADD `contact` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL AFTER `education` ;
\ No newline at end of file +ALTER TABLE `profile` ADD `contact` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL AFTER `education` ; +ALTER TABLE `profile` ADD `hide-friends` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `is-default` ; |