Blame view

console/migrations/m160930_145734_create_tax_group_lang_table.php 1.7 KB
d55d2fe0   Yarik   Multilanguage
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <?php
      
      use yii\db\Migration;
      
      /**
       * Handles the creation for table `tax_group_lang`.
       */
      class m160930_145734_create_tax_group_lang_table extends Migration
      {
          
          /**
           * @inheritdoc
           */
          public function up()
          {
c70f24ea   Yarik   For Leha commit.
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
              $this->createTable(
                  'tax_group_lang',
                  [
                      'tax_group_id' => $this->integer()
                                             ->notNull(),
                      'language_id'  => $this->integer()
                                             ->notNull(),
                      'title'        => $this->string()
                                             ->notNull(),
                      'description'  => $this->text(),
                  ]
              );
              $this->createIndex(
                  'tax_group_lang_tax_group_language_key',
                  'tax_group_lang',
                  [
                      'tax_group_id',
                      'language_id',
                  ],
                  true
              );
              
              $this->addForeignKey(
                  'tax_group_fk',
                  'tax_group_lang',
d55d2fe0   Yarik   Multilanguage
41
                  'tax_group_id',
c70f24ea   Yarik   For Leha commit.
42
43
44
45
46
47
48
49
                  'tax_group',
                  'id',
                  'CASCADE',
                  'CASCADE'
              );
              $this->addForeignKey(
                  'language_fk',
                  'tax_group_lang',
d55d2fe0   Yarik   Multilanguage
50
                  'language_id',
c70f24ea   Yarik   For Leha commit.
51
52
53
54
55
                  'language',
                  'id',
                  'RESTRICT',
                  'CASCADE'
              );
d55d2fe0   Yarik   Multilanguage
56
57
58
59
60
61
62
63
64
65
          }
          
          /**
           * @inheritdoc
           */
          public function down()
          {
              $this->dropTable('tax_group_lang');
          }
      }