Basic database structure and partial implementation for UACs and tokens
This commit is contained in:
parent
9c6a1e808f
commit
36afeaad42
13 changed files with 454 additions and 192 deletions
13
src/main/scala/db/modules/uac/UACQueries.scala
Normal file
13
src/main/scala/db/modules/uac/UACQueries.scala
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
package db.modules.uac
|
||||
|
||||
import db.modules.uac.UACSchema
|
||||
|
||||
import slick.jdbc.JdbcProfile
|
||||
|
||||
class UACQueries(
|
||||
val profile: JdbcProfile,
|
||||
val schema: UACSchema
|
||||
):
|
||||
import profile.api._
|
||||
val UACBase = schema._uacTable
|
||||
val tokenScopeBase = schema._uacTokenScopeTable
|
||||
Loading…
Add table
Add a link
Reference in a new issue