co.actioniq.luna.logging.TransactionAction.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of luna_2.11 Show documentation
Show all versions of luna_2.11 Show documentation
Luna makes Slick DAOs simple
package co.actioniq.luna.logging
object TransactionAction extends Enumeration {
type TransactionAction = Value
val create = Value("create")
val update = Value("update")
val delete = Value("delete")
}