You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
568 B
Haskell
18 lines
568 B
Haskell
8 years ago
|
{-# LANGUAGE OverloadedStrings #-}
|
||
|
{-# LANGUAGE RecordWildCards #-}
|
||
7 years ago
|
{-# LANGUAGE GADTs #-}
|
||
|
{-# LANGUAGE Rank2Types #-}
|
||
|
{-# LANGUAGE StandaloneDeriving #-}
|
||
|
|
||
7 years ago
|
module Ringo.Types
|
||
|
( ColumnName, ColumnType, TableName
|
||
|
, Nullable(..), Column(..), TableConstraint(..), Table(..)
|
||
|
, TimeUnit(..), timeUnitName, timeUnitToSeconds
|
||
|
, Fact(..), FactColumnType(..), FactColumn(..), factSourceColumnName
|
||
|
, Settings(..), defSettings
|
||
|
, ValidationError(..), TypeDefaults
|
||
|
, Env, EnvV(..), envView
|
||
|
, TablePopulationMode(..), Dependencies) where
|
||
|
|
||
|
import Ringo.Types.Internal
|