m170815_141403_create_price_upload_table.php
526 Bytes
<?php
use yii\db\Migration;
/**
* Handles the creation of table `price_upload`.
*/
class m170815_141403_create_price_upload_table extends Migration
{
/**
* @inheritdoc
*/
public function up()
{
$this->createTable('price_upload', [
'sku' => $this->string(),
'price' => $this->decimal(),
'price_old' => $this->decimal(),
]);
}
/**
* @inheritdoc
*/
public function down()
{
$this->dropTable('price_upload');
}
}