| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- * Class M241014172910DeleteRbacItemForTitleSss
- */
- class M241014172910DeleteRbacItemForTitleSss extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = <<<SQL
- DELETE FROM qimall_rbac_auth_item WHERE id = 4041 AND title = 'sss';
- DELETE FROM qimall_rbac_auth_item WHERE id = 2268 AND title = '回收站';
- SQL;
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M241014172910DeleteRbacItemForTitleSss cannot be reverted.\n";
- return false;
- }
- }
|