示例#1
0
 /**
  * Drop a table from the schema.
  *
  * @param  string  $table
  * @return Schema_Blueprint
  */
 public function drop($table)
 {
     $blueprint = new Schema_Blueprint($table);
     $blueprint->drop();
     return $this->build($blueprint);
 }