| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- *
- * Class m220803_085248_insert_qimall_express
- */
- class m220803_085248_insert_qimall_express extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "m220803_085248_insert_qimall_express cannot be reverted.\n";
- return false;
- }
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- try {
- $this->insert('qimall_express',[
- 'id'=>1024,
- 'name'=>'极兔快递',
- 'code'=>'JTSD',
- 'status'=>1,
- 'created_at'=>1631687277,
- 'updated_at'=>1631687277,
- ]);
- }catch (\Exception $e){
- }
- }
- public function down()
- {
- echo "m220803_085248_insert_qimall_express cannot be reverted.\n";
- return false;
- }
- }
|