Facility for Rootstock object to keep track of sequence number
[rootstock.git] / Action.hs
blobd83411b150893d683ad79e40287250c6bac6b875
1 {-# LANGUAGE TemplateHaskell #-}
2 module Action where
3 import Database.Persist.TH (derivePersistField)
5 data Action
6 = Running
7 | InitialSetup
8 | AddNode
9 deriving (Eq, Show, Read)
10 derivePersistField "Action"