Blame view

console/migrations/m160509_121023_articles.php 916 Bytes
4253cbec   root   first commit
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
  <?php
  
  use yii\db\Migration;
  
  class m160509_121023_articles extends Migration
  {
      public function up()
      {
          $this->createTable('articles', [
              'id' => $this->primaryKey(),
              'date'=> $this->date(),
              'title'=> $this->string()->notNull(),
              'body'=> $this->text()->notNull(),
              'image'=> $this->string()->notNull(),
              'translit'=> $this->string()->notNull(),
              'meta_title'=> $this->string(),
              'meta_keywords' => $this->string(),
              'meta_description'=> $this->string(),
              'seo_text'=> $this->text(),
              'h1'=> $this->string(),
  
          ]);
      }
  
      public function down()
      {
          $this->dropTable('articles');
      }
  
      /*
      // Use safeUp/safeDown to run migration code within a transaction
      public function safeUp()
      {
      }
  
      public function safeDown()
      {
      }
      */
  }