Check that multiUpdate with linkOptimumAtPrice is strictlySuperior
[rootstock.git] / Action.hs
blob83dcb8474b6141d00864636f5da29ae9c8973dfe
1 {-# LANGUAGE TemplateHaskell #-}
2 module Action where
3 import Database.Persist.TH (derivePersistField)
5 data Action
6 = Running
7 | InitialSetup
8 | AddNode
9 deriving (Show, Read)
10 derivePersistField "Action"