createTable('page', [ 'id' => $this->primaryKey(), 'in_menu'=> $this->boolean()->notNull()->defaultValue(false), 'sort' => $this->integer() ->defaultValue(0), 'gallery' => $this->string() ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('page'); } }