m210602_172731_add.php
714 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
<?php
use yii\db\Migration;
/**
* Class m210602_172731_add
*/
class m210602_172731_add extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
// creates index for column `author_id`
$this->createIndex(
'idx-host-status',
'{{%host}}',
'wis_status'
);
$this->addColumn('{{%host}}', 'domain_expire', $this->dateTime()->null()->comment('Дата действия'));
}
/**
* {@inheritdoc}
*/
public function safeDown()
{
$this->dropIndex(
'idx-host-status',
'{{%host}}'
);
$this->dropColumn('{{%host}}', 'domain_expire');
}
}