mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
3 lines
222 B
SQL
3 lines
222 B
SQL
ALTER TABLE `profiles` ADD COLUMN `birthday_privacy` TINYINT(3) UNSIGNED NOT NULL DEFAULT 0;
|
|
UPDATE `profiles` SET `birthday_privacy` = 2 WHERE `birthday` = 0;
|
|
UPDATE `profiles` SET `birthday` = NULL WHERE `birthday` = 0;
|