createTable('{{%pages}}', [ 'id' => $this->primaryKey(), 'title' => $this->string()->notNull(), 'slug' => $this->string()->notNull(), 'content' => 'MEDIUMTEXT', 'meta_json' => $this->text()->notNull(), 'lft' => $this->integer()->notNull(), 'rgt' => $this->integer()->notNull(), 'depth' => $this->integer()->notNull(), ], $tableOptions); $this->createIndex('{{%idx-pages-slug}}', '{{%pages}}', 'slug', true); $this->insert('{{%pages}}', [ 'id' => 1, 'title' => '', 'slug' => 'root', 'content' => null, 'meta_json' => '{}', 'lft' => 1, 'rgt' => 2, 'depth' => 0, ]); } public function down() { $this->dropTable('{{%pages}}'); } }