Skip to content

Instantly share code, notes, and snippets.

@anderssonfilip
Last active August 29, 2015 13:57
Show Gist options
  • Save anderssonfilip/9617349 to your computer and use it in GitHub Desktop.
Save anderssonfilip/9617349 to your computer and use it in GitHub Desktop.
Slick lifted Coffees
class Coffees(tag: Tag) extends Table[(String, Int, Double, Int, Int)]
(tag, "COFFEES") {
def name = column[String]("NAME", O.PrimaryKey)
def price = column[Double]("PRICE")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment