You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow inserting modifiers on create table statement
These modifiers are keywords that can be inserted between the tokens "CREATE" and "TABLE".
See https://www.postgresql.org/docs/current/sql-createtable.html.
For example, in postgres we can use :modifiers to create unlogged tables:
create table(:sessions, modifiers: UNLOGGED)
The statement above now produces the following DDL:
CREATE UNLOGGED TABLE sessions ...
0 commit comments