| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace addons\Agent\console\migrations;
- use yii\db\Migration;
- /**
- * Class M250716095901AlterQimallAddonsAgent
- */
- class M250716095901AlterQimallAddonsAgent extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql=<<<SQL
- ALTER TABLE `qimall_addons_agent`
- MODIFY COLUMN `total_score` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '累计积分'
- SQL;
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M250716095901AlterQimallAddonsAgent cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M250716095901AlterQimallAddonsAgent cannot be reverted.\n";
- return false;
- }
- */
- }
|