Rename a table.
from is the current name of the table. to is the new name of the table.
from
to
static String rename(String from, String to) { return DB.connection()!.driver.renameTable(from, to); }