| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace addons\Coupon\console\migrations;
- use common\models\common\Addons;
- use yii\db\Migration;
- /**
- * Class M230823020108ReloadCoupon
- */
- class M230823020108ReloadCoupon extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- return true;
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M230823020108ReloadCoupon cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M230823020108ReloadCoupon cannot be reverted.\n";
- return false;
- }
- */
- }
|