creation


Functions

f create_tables(tables, if_not_exists=False, connection=None) ...

Create the given tables as a set. Constraints are collected and only created at the end of the process. Tables are created in the given order.

f create_tables_sql(tables, connection=None) ...

Return a list of SQL statements for creating the given tables.

f drop_tables(tables, if_exists=False, connection=None) ...

Drop the given tables as a set. Tables are dropped in reverse order.

f drop_tables_sql(tables, connection=None) ...

See the source for more information.