The jOOQ User Manual : SQL building : SQL Statements (DDL) : The ALTER statement : ALTER SCHEMA | previous : next |
ALTER SCHEMA
Applies to ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
The only property of a schema that can be changed, currently, is its name. In order to alter an schema's name, use:
// Renaming the schema create.alterSchema("old_schema").renameTo("new_schema").execute();
Feedback
Do you have any feedback about this page? We'd love to hear it!