| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace addons\SecondaryCard\console\migrations;
- use yii\db\Migration;
- /**
- * Class M240412015822InsertQimallLinkCategory
- */
- class M240412015822InsertQimallLinkCategory extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql="INSERT INTO `qimall_link_category` ( `name`, `title`, `pid`, `is_list`, `remark`, `status`, `created_at`, `updated_at`) VALUES ( 'secondary_card', '次卡', 19, 1, '', 1, 1659584481, 1659584481);";
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M240412015822InsertQimallLinkCategory cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M240412015822InsertQimallLinkCategory cannot be reverted.\n";
- return false;
- }
- */
- }
|