| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- * Class M250516155535AddLinkCategory
- */
- class M250516155535AddLinkCategory extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- try {
- $exists = $this->db->createCommand("
- SELECT 1 FROM `qimall_link_category` WHERE `title` = '小白优选' LIMIT 1
- ")->queryScalar();
-
- if (!$exists) {
- $this->db->createCommand("
- INSERT INTO `qimall_link_category` (`name`, `title`, `pid`, `is_list`, `remark`, `status`, `created_at`, `updated_at`)
- VALUES ('store_goods', '小白优选', 19, 1, '', 1, 1747366655, 1747366655)
- ")->execute();
- }
- } catch (\Exception $e) {
- echo "Error: " . $e->getMessage();
- }
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M250516155535AddLinkCategory cannot be reverted.\n";
- return false;
- }
- }
|