| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- *
- * Class M221128034650InsertQimallExpress
- */
- class M221128034650InsertQimallExpress extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = "INSERT INTO `qimall_express`(`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1025, '丰网速运', 'FWX', 1631687277, 1631687277);";
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M221128034650InsertQimallExpress cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M221128034650InsertQimallExpress cannot be reverted.\n";
- return false;
- }
- */
- }
|