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.
16 lines
530 B
Haskell
16 lines
530 B
Haskell
{-# LANGUAGE OverloadedStrings #-}
|
|
{-# LANGUAGE GADTs #-}
|
|
{-# LANGUAGE Rank2Types #-}
|
|
|
|
module Ringo.Types
|
|
( ColumnName, ColumnType, TableName
|
|
, Nullable(..), Column(..), TableConstraint(..), Table(..)
|
|
, TimeUnit(..), timeUnitName, timeUnitToSeconds
|
|
, Fact(..), FactColumnType(..), FactColumn(..), factSourceColumnName
|
|
, Settings(..), defSettings
|
|
, ValidationError(..), TypeDefaults
|
|
, Env, envTables, envFacts, envSettings, envTypeDefaults,
|
|
TablePopulationMode(..), Dependencies) where
|
|
|
|
import Ringo.Types.Internal
|