J'ai ajouté une nouvelle colonne à la table newsletter_subscriber, 'artists_followed'. dans ma Mage_Newsletter_Model_Subscriber
classe de modèle surchargée , j'ai ajouté la fonction suivante:
public function updateSubscriberArtists($email, $artist) {
$this->loadByEmail($email);
if ($this->getId()) {
$this->setArtistsFollowed($artist);
try {
$this->save();
}
catch (Exception $e) {
throw new Exception($e->getMessage());
}
}
}
tout fonctionne bien, aucune erreur n'est levée, mais quand je regarde dans la base de données, la nouvelle colonne n'est pas remplie.
Ma table est:
CREATE TABLE `mage_newsletter_subscriber` (
`subscriber_id` int(7) unsigned NOT NULL AUTO_INCREMENT,
`store_id` smallint(5) unsigned DEFAULT '0',
`change_status_at` datetime DEFAULT NULL,
`customer_id` int(11) unsigned NOT NULL DEFAULT '0',
`subscriber_email` varchar(150) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '',
`subscriber_status` int(3) NOT NULL DEFAULT '0',
`subscriber_confirm_code` varchar(32) DEFAULT 'NULL',
`created_at` datetime DEFAULT NULL,
`campaign_source` varchar(255) DEFAULT NULL,
`artists_followed` text,
PRIMARY KEY (`subscriber_id`),
KEY `FK_SUBSCRIBER_CUSTOMER` (`customer_id`),
KEY `FK_NEWSLETTER_SUBSCRIBER_STORE` (`store_id`),
CONSTRAINT `FK_NEWSLETTER_SUBSCRIBER_STORE` FOREIGN KEY (`store_id`) REFERENCES `mage_core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter subscribers';
Je creuse mon cerveau sur celui-ci. Des idées? Suis-je en train de manquer quelque chose de complètement évident?
./n98-magerun cache:flush
:)