Commit 7d4a346f authored by Colin Viebrock's avatar Colin Viebrock

Adding Schema::rename('oldtable','newtable') support

Signed-off-by: 's avatarColin Viebrock <colin@viebrock.ca>
parent 2a49787e
...@@ -212,6 +212,18 @@ class MySQL extends Grammar { ...@@ -212,6 +212,18 @@ class MySQL extends Grammar {
return 'ALTER TABLE '.$this->wrap($table)." ADD {$type} {$name}({$keys})"; return 'ALTER TABLE '.$this->wrap($table)." ADD {$type} {$name}({$keys})";
} }
/**
* 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 'RENAME TABLE '.$this->wrap($table).' TO '.$this->wrap($command->name);
}
/** /**
* Generate the SQL statement for a drop table command. * Generate the SQL statement for a drop table command.
* *
......
...@@ -198,6 +198,18 @@ class Postgres extends Grammar { ...@@ -198,6 +198,18 @@ class Postgres extends Grammar {
return $create." INDEX {$command->name} ON ".$this->wrap($table)." ({$columns})"; 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. * Generate the SQL statement for a drop table command.
* *
...@@ -302,7 +314,7 @@ class Postgres extends Grammar { ...@@ -302,7 +314,7 @@ class Postgres extends Grammar {
*/ */
public function drop_foreign(Table $table, Fluent $command) public function drop_foreign(Table $table, Fluent $command)
{ {
return $this->drop_constraint($table, $command); return $this->drop_constraint($table, $command);
} }
/** /**
......
...@@ -201,6 +201,18 @@ class SQLite extends Grammar { ...@@ -201,6 +201,18 @@ class SQLite extends Grammar {
return $create." INDEX {$command->name} ON ".$this->wrap($table)." ({$columns})"; 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. * Generate the SQL statement for a drop table command.
* *
......
...@@ -212,6 +212,18 @@ class SQLServer extends Grammar { ...@@ -212,6 +212,18 @@ class SQLServer extends Grammar {
return $create." INDEX {$command->name} ON ".$this->wrap($table)." ({$columns})"; 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. * Generate the SQL statement for a drop table command.
* *
...@@ -320,7 +332,7 @@ class SQLServer extends Grammar { ...@@ -320,7 +332,7 @@ class SQLServer extends Grammar {
*/ */
public function drop_foreign(Table $table, Fluent $command) public function drop_foreign(Table $table, Fluent $command)
{ {
return $this->drop_constraint($table, $command); return $this->drop_constraint($table, $command);
} }
/** /**
......
...@@ -142,6 +142,17 @@ class Table { ...@@ -142,6 +142,17 @@ class Table {
return $this->command($type, compact('name', 'columns')); return $this->command($type, compact('name', 'columns'));
} }
/**
* Rename the database table.
*
* @param string $name
* @return Fluent
*/
public function rename($name)
{
return $this->command(__FUNCTION__, compact('name'));
}
/** /**
* Drop the database table. * Drop the database table.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment