Rename DbStructure names

This commit is contained in:
calebmer
2015-11-12 15:01:23 -05:00
parent 0f5bc34c04
commit 2f6254f44c
5 changed files with 17 additions and 17 deletions
+4 -4
View File
@@ -6,10 +6,10 @@ import Data.Aeson
import Data.Map
data DbStructure = DbStructure {
tables :: [Table]
, columns :: [Column]
, relations :: [Relation]
, primaryKeys :: [PrimaryKey]
dbTables :: [Table]
, dbColumns :: [Column]
, dbRelations :: [Relation]
, dbPrimaryKeys :: [PrimaryKey]
} deriving (Show, Eq)
type Schema = Text