| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
U.Codebase.Sqlite.ProjectBranch
Synopsis
- data ProjectBranch = ProjectBranch {
- projectId :: !ProjectId
- branchId :: !ProjectBranchId
- name :: !ProjectBranchName
- parentBranchId :: !(Maybe ProjectBranchId)
- isMerge :: !Bool
- isUpdate :: !Bool
- isUpgrade :: !Bool
- data ProjectBranchRow = ProjectBranchRow {}
Documentation
data ProjectBranch Source #
A project branch.
Constructors
| ProjectBranch | |
Fields
| |
Instances
data ProjectBranchRow Source #
Constructors
| ProjectBranchRow | |
Fields
| |
Instances
| Generic ProjectBranchRow Source # | |||||
Defined in U.Codebase.Sqlite.ProjectBranch Associated Types
Methods from :: ProjectBranchRow -> Rep ProjectBranchRow x # to :: Rep ProjectBranchRow x -> ProjectBranchRow # | |||||
| Show ProjectBranchRow Source # | |||||
Defined in U.Codebase.Sqlite.ProjectBranch Methods showsPrec :: Int -> ProjectBranchRow -> ShowS # show :: ProjectBranchRow -> String # showList :: [ProjectBranchRow] -> ShowS # | |||||
| Eq ProjectBranchRow Source # | |||||
Defined in U.Codebase.Sqlite.ProjectBranch Methods (==) :: ProjectBranchRow -> ProjectBranchRow -> Bool # (/=) :: ProjectBranchRow -> ProjectBranchRow -> Bool # | |||||
| FromRow ProjectBranchRow Source # | |||||
Defined in U.Codebase.Sqlite.ProjectBranch Methods | |||||
| ToRow ProjectBranchRow Source # | |||||
Defined in U.Codebase.Sqlite.ProjectBranch Methods toRow :: ProjectBranchRow -> [SQLData] # | |||||
| type Rep ProjectBranchRow Source # | |||||
Defined in U.Codebase.Sqlite.ProjectBranch type Rep ProjectBranchRow = D1 ('MetaData "ProjectBranchRow" "U.Codebase.Sqlite.ProjectBranch" "unison-codebase-sqlite-0.0.0-8z668DVoopd5Hd4AwRCMd4" 'False) (C1 ('MetaCons "ProjectBranchRow" 'PrefixI 'True) ((S1 ('MetaSel ('Just "projectId") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 ProjectId) :*: S1 ('MetaSel ('Just "branchId") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 ProjectBranchId)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 ProjectBranchName) :*: S1 ('MetaSel ('Just "parentBranchId") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe ProjectBranchId))))) | |||||