catfan / Medoo

The lightweight PHP database framework to accelerate the development.
https://medoo.in
MIT License
4.84k stars 1.15k forks source link

Rename Table #884

Closed tunakode closed 3 years ago

tunakode commented 4 years ago

I have seen that Medoo have create and drop table ( https://medoo.in/api/ )
Is there any management API that can renaming table?

I mean something like: $database->rename("account", "accounts");

instead something like

$database->query("ALTER TABLE table_name (
RENAME TO new_table_name)
;");

Regards

rytplays commented 3 years ago

not required