mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-07-24 08:51:43 +08:00
28 lines
652 B
PHP
28 lines
652 B
PHP
<?php
|
|
|
|
class Schema202102031615 extends Phinx\Migration\AbstractMigration
|
|
{
|
|
|
|
public function change()
|
|
{
|
|
$this->table('kg_course')
|
|
->addColumn('origin_price', 'decimal', [
|
|
'null' => false,
|
|
'default' => '0.00',
|
|
'precision' => '10',
|
|
'scale' => '2',
|
|
'comment' => '原始价格',
|
|
'after' => 'teacher_id',
|
|
])
|
|
->save();
|
|
|
|
$this->updateOriginPrice();
|
|
}
|
|
|
|
protected function updateOriginPrice()
|
|
{
|
|
$this->execute("UPDATE kg_course SET origin_price = round(1.5 * market_price)");
|
|
}
|
|
|
|
}
|