You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
948 B
27 lines
948 B
9 years ago
|
<?php
|
||
|
|
||
|
use yii\db\Schema;
|
||
|
use yii\db\Migration;
|
||
|
|
||
|
class m150722_150100_multiple_tree extends Migration
|
||
|
{
|
||
|
public function up()
|
||
|
{
|
||
|
$tableOptions = null;
|
||
|
if ($this->db->driverName === 'mysql') {
|
||
|
// http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci
|
||
|
$tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB';
|
||
|
}
|
||
|
|
||
|
$this->createTable('{{%multiple_tree}}', [
|
||
|
'id' => Schema::TYPE_PK,
|
||
|
'tree' => Schema::TYPE_INTEGER . ' NULL',
|
||
|
'lft' => Schema::TYPE_INTEGER . ' NOT NULL',
|
||
|
'rgt' => Schema::TYPE_INTEGER . ' NOT NULL',
|
||
|
'depth' => Schema::TYPE_INTEGER . ' NOT NULL',
|
||
|
], $tableOptions);
|
||
|
$this->createIndex('lft', '{{%multiple_tree}}', ['tree', 'lft', 'rgt']);
|
||
|
$this->createIndex('rgt', '{{%multiple_tree}}', ['tree', 'rgt']);
|
||
|
}
|
||
|
}
|