Blame view

console/migrations/m160926_122456_create_articles_lang_table.php 1.69 KB
d55d2fe0   Yarik   Multilanguage
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
49
  <?php
      
      use yii\db\Migration;
      
      /**
       * Handles the creation for table `articles_lang`.
       */
      class m160926_122456_create_articles_lang_table extends Migration
      {
          
          /**
           * @inheritdoc
           */
          public function up()
          {
              $this->createTable('articles_lang', [
                  'articles_id'      => $this->integer()
                                             ->notNull(),
                  'language_id'      => $this->integer()
                                             ->notNull(),
                  'title'            => $this->string()
                                             ->notNull(),
                  'body'             => $this->text()
                                             ->notNull(),
                  'meta_title'       => $this->string(),
                  'meta_keywords'    => $this->string(),
                  'meta_description' => $this->string(),
                  'seo_text'         => $this->text(),
                  'h1'               => $this->string(),
                  'body_preview'     => $this->text(),
              ]);
              
              $this->createIndex('articles_lang_article_language_key', 'articles_lang', [
                  'articles_id',
                  'language_id',
              ], true);
      
              $this->addForeignKey('articles_fk', 'articles_lang', 'articles_id', 'articles', 'id', 'CASCADE', 'CASCADE');
              $this->addForeignKey('language_fk', 'articles_lang', 'language_id', 'language', 'language_id', 'RESTRICT', 'CASCADE');
          }
          
          /**
           * @inheritdoc
           */
          public function down()
          {
              $this->dropTable('articles_lang');
          }
      }