m160331_122305_template_location.php
741 Bytes
<?php
use yii\db\Migration;
class m160331_122305_template_location extends Migration
{
public function up()
{
$this->createTable('{{%template_location}}', [
'template_location_id' => $this->primaryKey(),
'template_location_name' => $this->string(255)->notNull(),
'template_location_title' => $this->string(255),
'width' => $this->integer(4)->notNull(),
'height' => $this->integer(4)->notNull(),
'sort' => $this->integer(6)->notNull(),
'is_slider' => $this->smallInteger(1),
'is_banner' => $this->smallInteger(1),
]);
}
public function down()
{
$this->dropTable('{{%template_location}}');
}
}