1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-15 12:52:21 +08:00
course-tencent-cloud/db/migrations/20200901114014_insert_vip_data.php
koogua 0336a54911 1.源文件增加版权信息
2.群组状态和课程协同
2021-06-13 15:49:47 +08:00

57 lines
1.3 KiB
PHP

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
use Phinx\Migration\AbstractMigration;
final class InsertVipData extends AbstractMigration
{
public function up()
{
$now = time();
$rows = [
[
'id' => 1,
'title' => '1个月',
'expiry' => 1,
'price' => 60.00,
'create_time' => $now,
],
[
'id' => 2,
'title' => '3个月',
'expiry' => 3,
'price' => 150.00,
'create_time' => $now,
],
[
'id' => 3,
'title' => '6个月',
'expiry' => 6,
'price' => 240.00,
'create_time' => $now,
],
[
'id' => 4,
'title' => '12个月',
'expiry' => 12,
'price' => 360.00,
'create_time' => $now,
],
];
$this->table('kg_vip')->insert($rows)->save();
}
public function down()
{
$this->execute('DELETE FROM kg_vip');
}
}