Skip to content

Commit

Permalink
Fix missing field
Browse files Browse the repository at this point in the history
  • Loading branch information
amitaibu committed Aug 13, 2024
1 parent 2b71e5e commit c1844ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ihp-ide/IHP/IDE/SchemaDesigner/Parser.hs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ createTable = do
_ -> Prelude.fail ("Primary key defined in both column and table constraints on table " <> cs name)
_ -> Prelude.fail "Multiple columns with PRIMARY KEY constraint"

pure CreateTable { name, columns, primaryKeyConstraint, constraints, unlogged }
pure CreateTable { name, columns, primaryKeyConstraint, constraints, unlogged, inherits }

createEnumType = do
lexeme "CREATE"
Expand Down

0 comments on commit c1844ac

Please sign in to comment.