m170928_141633_create_persone_lang_table.php
1.47 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
<?php
use yii\db\Migration;
/**
* Handles the creation of table `persone_lang`.
*/
class m170928_141633_create_persone_lang_table extends Migration
{
/**
* @inheritdoc
*/
public function up()
{
$this->createTable(
'persone_lang',
[
'persone_id' => $this->integer(),
'language_id' => $this->integer(),
'alias_id' => $this->integer(),
'title' => $this->string(),
'text' => $this->text(),
]
);
$this->createIndex(
'persone_ix',
'persone_lang',
[
'persone_id',
'language_id',
],
true
);
$this->addForeignKey('persone_fk', 'persone_lang', 'persone_id', 'persone', 'id', 'CASCADE', 'CASCADE');
$this->addForeignKey('lang_fk', 'persone_lang', 'language_id', 'language', 'id', 'CASCADE', 'CASCADE');
}
/**
* @inheritdoc
*/
public function down()
{
$this->dropForeignKey('lang_fk', 'persone_lang');
$this->dropForeignKey('persone_fk', 'persone_lang');
$this->dropTable('persone_lang');
}
}