1f1f4955
Yarik
Synonym
|
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
|
<?php
use yii\db\Migration;
class m170303_130758_add_columns_synonym extends Migration
{
public function up()
{
$this->addColumn('category', 'synonym', $this->string());
$this->addColumn(
'tax_group',
'use_in_name',
$this->boolean()
->defaultValue(false)
);
$this->addColumn('tax_option', 'synonym', $this->string());
}
public function down()
{
$this->dropColumn('tax_group', 'use_in_menu');
$this->dropColumn('tax_option', 'synonym');
$this->dropColumn('category', 'synonym');
}
}
|