m160505_235100_page.php 999 Bytes
<?php

use yii\db\Migration;

/**
 * Handles the creation for table `page`.
 */
/**
 *
 * @property integer $id
 * @property string $name
 * @property string $translit
 * @property string $title
 * @property string $body
 * @property string $meta_title
 * @property string $description
 * @property string $h1
 * @property string $seo_text
 */
class m160505_235100_page extends Migration
{
    /**
     * @inheritdoc
     */
    public function up()
    {

        $this->createTable('page', [
            'id' => $this->primaryKey(),
            'translit'=> $this->string(),
            'title'=> $this->string(),
            'body'=> $this->text(),
            'meta_title'=> $this->string(),
            'meta_keywords' => $this->string(),
            'meta_description'=> $this->string(),
            'seo_text'=> $this->text(),
            'h1'=> $this->string(),

        ]);
    }

    /**
     * @inheritdoc
     */
    public function down()
    {
        $this->dropTable('page');
    }
}