mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-03-21 08:39:42 +01:00
Initial commit
This commit is contained in:
20
app/models/package.scala
Normal file
20
app/models/package.scala
Normal file
@@ -0,0 +1,20 @@
|
||||
import slick.lifted.TableQuery
|
||||
|
||||
/**
|
||||
* Created by user on 8/12/15.
|
||||
*/
|
||||
package object models {
|
||||
|
||||
val profile = slick.driver.PostgresDriver
|
||||
|
||||
val jodaSupport = com.github.tototoshi.slick.PostgresJodaSupport
|
||||
|
||||
object tables {
|
||||
val libraries = TableQuery[Libraries]
|
||||
val libraryTagAssignments = TableQuery[LibraryTagAssignments]
|
||||
val tags = TableQuery[LibraryTags]
|
||||
val snoozesTable = TableQuery[Snoozes]
|
||||
val authTokens = TableQuery[CookieAuthenticators]
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user