Blame view

backend/components/imagemanager/migrations/m180530_131113_create_ImageManagerLant_table.php 1.27 KB
dd15bb0c   alex   Merge branches 'c...
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
50
51
52
53
54
55
56
57
58
59
60
61
  <?php
  
  use yii\db\Migration;
  
  /**
   * Handles the creation of table `ImageManagerLant`.
   */
  class m180530_131113_create_ImageManagerLant_table extends Migration
  {
      public function up()
      {
          $this->createTable(
              'ImageManagerLang',
              [
                  'image_id'    => $this->integer(),
                  'language_id' => $this->integer(),
                  'title'       => $this->string(),
                  'alt'         => $this->string(),
                  'description' => $this->string(),
              ]
          );
  
          $this->addForeignKey(
              'image_fk',
              'ImageManagerLang',
              'image_id',
              'ImageManager',
              'id',
              'CASCADE',
              'CASCADE'
          );
  
          $this->addForeignKey(
              'language_fk',
              'ImageManagerLang',
              'language_id',
              'language',
              'id',
              'CASCADE',
              'CASCADE'
          );
  
          $this->createIndex(
              'img_lang_uk',
              'ImageManagerLang',
              [
                  'language_id',
                  'image_id',
              ],
              true
          );
      }
  
      /**
       * @inheritdoc
       */
      public function down()
      {
          $this->dropTable('ImageManagerLang');
      }
  }