m180123_145850_create_object_table.php
1.27 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
<?php
use yii\db\Migration;
/**
 * Handles the creation of table `object`.
 * Has foreign keys to the tables:
 *
 * - `slider`
 */
class m180123_145850_create_object_table extends Migration
{
    /**
     * @inheritdoc
     */
    public function up()
    {
        $this->createTable('object', [
            'id' => $this->primaryKey(),
            'slider_id' => $this->integer()->notNull(),
            'status' => $this->boolean(),
            'sort' => $this->integer(),
        ]);
        // creates index for column `slider_id`
        $this->createIndex(
            'idx-object-slider_id',
            'object',
            'slider_id'
        );
        // add foreign key for table `slider`
        $this->addForeignKey(
            'fk-object-slider_id',
            'object',
            'slider_id',
            'slider',
            'id',
            'CASCADE'
        );
    }
    /**
     * @inheritdoc
     */
    public function down()
    {
        // drops foreign key for table `slider`
        $this->dropForeignKey(
            'fk-object-slider_id',
            'object'
        );
        // drops index for column `slider_id`
        $this->dropIndex(
            'idx-object-slider_id',
            'object'
        );
        $this->dropTable('object');
    }
}