00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 $installer = $this;
00036
00037
00038 $installer->startSetup();
00039
00040 $installer->run("
00041 ALTER TABLE {$this->getTable('newsletter_queue_store_link')}
00042 ADD CONSTRAINT `FK_NEWSLETTER_QUEUE_STORE_LINK_STORE` FOREIGN KEY (`store_id`)
00043 REFERENCES {$this->getTable('core_store')} (`store_id`)
00044 ON DELETE CASCADE
00045 ON UPDATE CASCADE;
00046 ");
00047 $installer->run("
00048 ALTER TABLE {$this->getTable('newsletter_subscriber')}
00049 DROP INDEX `FK_SUBSCRIBER_STORE`;
00050 ALTER TABLE {$this->getTable('newsletter_subscriber')}
00051 CHANGE `store_id` `store_id` smallint(5) unsigned NULL DEFAULT '0';
00052 ALTER TABLE {$this->getTable('newsletter_subscriber')}
00053 ADD CONSTRAINT `FK_NEWSLETTER_SUBSCRIBER_STORE` FOREIGN KEY (`store_id`)
00054 REFERENCES {$this->getTable('core_store')} (`store_id`)
00055 ON UPDATE CASCADE
00056 ON DELETE SET NULL;
00057 ");
00058 $installer->endSetup();