diff --git a/ihp-ide/IHP/IDE/SchemaDesigner/Parser.hs b/ihp-ide/IHP/IDE/SchemaDesigner/Parser.hs index cb2ea0e7d..2fc9a439d 100644 --- a/ihp-ide/IHP/IDE/SchemaDesigner/Parser.hs +++ b/ihp-ide/IHP/IDE/SchemaDesigner/Parser.hs @@ -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"