From c1844ac19fb006e7d493f72fc38c53cc56f5c8f6 Mon Sep 17 00:00:00 2001 From: Amitai Burstein Date: Tue, 13 Aug 2024 21:35:40 +0300 Subject: [PATCH] Fix missing field --- ihp-ide/IHP/IDE/SchemaDesigner/Parser.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"