| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace addons\SmartForm\console\migrations;
- use yii\db\Migration;
- /**
- * Class M221102091748ChangeSmartformLinkCategoryStatus
- */
- class M221102091748ChangeSmartformAddonsLinksStatus extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $this->update('{{%addons_links}}', ['status' => -1], 'addons_name = :name', [':name' => 'SmartForm']);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- $this->update('{{%addons_links}}', ['status' => 1], 'addons_name = :name', [':name' => 'SmartForm']);
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M221102091748ChangeSmartformLinkCategoryStatus cannot be reverted.\n";
- return false;
- }
- */
- }
|