Add tables back to DbStructure

This commit is contained in:
calebmer
2015-11-11 10:32:19 -05:00
parent 16af8fc61e
commit 0374d4e651
3 changed files with 26 additions and 3 deletions
+2 -1
View File
@@ -6,7 +6,8 @@ import Data.Aeson
import Data.Map
data DbStructure = DbStructure {
columns :: [Column]
tables :: [Table]
, columns :: [Column]
, relations :: [Relation]
, primaryKeys :: [PrimaryKey]
} deriving (Show, Eq)