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.
61 lines
2.2 KiB
61 lines
2.2 KiB
<?php |
|
/** |
|
* @link https://github.com/paulzi/yii2-nested-sets |
|
* @copyright Copyright (c) 2015 PaulZi <pavel.zimakoff@gmail.com> |
|
* @license MIT (https://github.com/paulzi/yii2-nested-sets/blob/master/LICENSE) |
|
*/ |
|
|
|
namespace paulzi\nestedsets\tests\migrations; |
|
|
|
use yii\db\Schema; |
|
use yii\db\Migration; |
|
|
|
/** |
|
* @author PaulZi <pavel.zimakoff@gmail.com> |
|
*/ |
|
class TestMigration extends Migration |
|
{ |
|
public function up() |
|
{ |
|
ob_start(); |
|
$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'; |
|
} |
|
|
|
// tree |
|
if ($this->db->getTableSchema('{{%tree}}', true) !== null) { |
|
$this->dropTable('{{%tree}}'); |
|
} |
|
$this->createTable('{{%tree}}', [ |
|
'id' => Schema::TYPE_PK, |
|
'lft' => Schema::TYPE_INTEGER . ' NOT NULL', |
|
'rgt' => Schema::TYPE_INTEGER . ' NOT NULL', |
|
'depth' => Schema::TYPE_INTEGER . ' NOT NULL', |
|
'slug' => Schema::TYPE_STRING . ' NOT NULL', |
|
], $tableOptions); |
|
$this->createIndex('lft1', '{{%tree}}', ['lft', 'rgt']); |
|
$this->createIndex('rgt1', '{{%tree}}', ['rgt']); |
|
|
|
// multiple tree |
|
if ($this->db->getTableSchema('{{%multiple_tree}}', true) !== null) { |
|
$this->dropTable('{{%multiple_tree}}'); |
|
} |
|
$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', |
|
'slug' => Schema::TYPE_STRING . ' NOT NULL', |
|
], $tableOptions); |
|
$this->createIndex('lft2', '{{%multiple_tree}}', ['tree', 'lft', 'rgt']); |
|
$this->createIndex('rgt2', '{{%multiple_tree}}', ['tree', 'rgt']); |
|
|
|
// update cache (sqlite bug) |
|
$this->db->getSchema()->getTableSchema('{{%tree}}', true); |
|
$this->db->getSchema()->getTableSchema('{{%multiple_tree}}', true); |
|
ob_end_clean(); |
|
} |
|
}
|
|
|