| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- namespace addons\CloudStock\console\migrations;
- use yii\db\Migration;
- /**
- * Class M231024020318ReloadCloudStock
- */
- class M231024020318ReloadCloudStock extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $mall_list = \common\models\mall\Mall::getEnableMallList(true);
- foreach ($mall_list as $mall){
- \addons\CloudStock\common\models\CloudStockAgentGuota::computeFillNums(['mall_id' => $mall['id']]);
- }
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M231024020318ReloadCloudStock cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M231024020318ReloadCloudStock cannot be reverted.\n";
- return false;
- }
- */
- }
|