protected function getBoltTablesSchema(Schema $schema)
 {
     $tables = parent::getBoltTablesSchema($schema);
     foreach ($tables as $table) {
         if ($table->getName() == 'bolt_relations') {
             $table->addColumn('sort', 'integer', array('default' => 0));
         }
     }
     return $tables;
 }