m171123_151350_create_ImageManager_table.php
880 Bytes
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;
/**
* Handles the creation of table `ImageManager`.
*/
class m171123_151350_create_ImageManager_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->createIndex(
'imageManagerIndexLang',
'ImageManagerLang',
['image_id', 'language_id'],
true
);
}
/**
* @inheritdoc
*/
public function down()
{
$this->dropIndex('imageManagerIndexLang', "ImageManagerLang");
$this->dropTable('ImageManagerLang');
}
}