| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace addons\OperationCenter\console\migrations;
- use yii\db\Migration;
- /**
- * Class M230831152913AddQimalGlobalVarMap
- */
- class M230831152913AddQimalGlobalVarMap extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $sql = "INSERT INTO `qimall_global_var_map`(`name`, `title`, `type`, `is_addons`, `status`, `created_at`, `updated_at`) VALUES ";
- $sql .= "('OperationCenter', '运营中心', 'FromTypeMap', 1, 1, 1654569888, 1654569888),";
- $sql .= "('operation_center_1', '运营中心直推奖励', 'CapitalTypeMap', 0, 1, 1654569888, 1654569888),";
- $sql .= "('operation_center_2', '运营中心间推奖励', 'CapitalTypeMap', 0, 1, 1654569888, 1654569888)";
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M230831152913AddQimalGlobalVarMap cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M230831152913AddQimalGlobalVarMap cannot be reverted.\n";
- return false;
- }
- */
- }
|