| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace addons\Seckill\console\migrations;
- use yii\db\Migration;
- /**
- * Class M250820084024InsertGlobalVarMap
- */
- class M250820084024InsertGlobalVarMap extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $now = time();
- $sql = <<<SQL
- INSERT INTO `qimall_global_var_map`(`name`, `title`, `type`, `is_addons`, `status`, `created_at`, `updated_at`) VALUES ('Seckill', '秒杀', 'MarketingTypeMap', 1, 1, $now, $now);
- SQL;
- $this->execute($sql);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M250820084024InsertGlobalVarMap cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M250820084024InsertGlobalVarMap cannot be reverted.\n";
- return false;
- }
- */
- }
|