|
@@ -212,6 +212,18 @@ class SQLServer extends Grammar {
|
|
|
return $create." INDEX {$command->name} ON ".$this->wrap($table)." ({$columns})";
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * Generate the SQL statement for a rename table command.
|
|
|
+ *
|
|
|
+ * @param Table $table
|
|
|
+ * @param Fluent $command
|
|
|
+ * @return string
|
|
|
+ */
|
|
|
+ public function rename(Table $table, Fluent $command)
|
|
|
+ {
|
|
|
+ return 'ALTER TABLE '.$this->wrap($table).' RENAME TO '.$this->wrap($command->name);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* Generate the SQL statement for a drop table command.
|
|
|
*
|
|
@@ -320,7 +332,7 @@ class SQLServer extends Grammar {
|
|
|
*/
|
|
|
public function drop_foreign(Table $table, Fluent $command)
|
|
|
{
|
|
|
- return $this->drop_constraint($table, $command);
|
|
|
+ return $this->drop_constraint($table, $command);
|
|
|
}
|
|
|
|
|
|
/**
|