/**
  * Compile the blueprint's inherits definitions.
  *
  * @param  BaseBlueprint $blueprint
  * @return array
  */
 protected function getInheritedTables(BaseBlueprint $blueprint)
 {
     $tables = [];
     foreach ($blueprint->getInheritedTables() as $table) {
         //$sql = $this->wrapTable($table);
         $tables[] = $table;
     }
     return $tables;
 }