You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Migration tool не правильное обрабатывает ситуации со сбросом значения по умолчанию, в одной с миграций он забыл поставить точки с запятыми после ALTER TABLE newsALTERctime DROP DEFAULT
The text was updated successfully, but these errors were encountered:
SET FOREIGN_KEY_CHECKS = 0;
ALTER TABLE `day` ADD `occupation` varchar(255) NOT NULL DEFAULT '' COMMENT '' COLLATE utf8_general_ci AFTER location;
ALTER TABLE `day` DROP `description`;
ALTER TABLE `user_settings` ALTER `social_share_twitter` SET DEFAULT 1#
# Fieldformat of 'user_settings.social_share_twitter' changed from 'int(1) unsigned NOT NULL DEFAULT '0' COMMENT '' to int(1) unsigned NOT NULL DEFAULT '1' COMMENT ''. Possibly data modifications needed!
#
SET FOREIGN_KEY_CHECKS = 1;
Migration tool не правильное обрабатывает ситуации со сбросом значения по умолчанию, в одной с миграций он забыл поставить точки с запятыми после
ALTER TABLE
newsALTER
ctimeDROP DEFAULT
The text was updated successfully, but these errors were encountered: