m160406_221846_create_page.php
1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?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 m160406_221846_create_page extends Migration
{
/**
* @inheritdoc
*/
public function up()
{
$this->createTable('page', [
'id' => $this->primaryKey(),
'name'=> $this->string(),
'alias'=> $this->string(),
'title' => $this->string(),
'body'=> $this->text(),
'meta_title'=> $this->string(),
'description' => $this->string(),
'h1'=> $this->string(),
'seo_text'=> $this->text(),
]);
}
/**
* @inheritdoc
*/
public function down()
{
$this->dropTable('page');
}
}