m170619_095632_create_ImageManagerLang_table.php
1.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
    
    use yii\db\Migration;
    
    /**
     * Handles the creation of table `ImageManagerLang`.
     */
    class m170619_095632_create_ImageManagerLang_table extends Migration
    {
        /**
         * @inheritdoc
         */
        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');
        }
    } 
