Last active
August 29, 2015 13:57
-
-
Save anderssonfilip/9617349 to your computer and use it in GitHub Desktop.
Slick lifted Coffees
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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