Files
odc-analyzer/app/models/ExportPlatformTables.scala
2016-12-13 23:37:18 +01:00

10 lines
304 B
Scala

package models
import models.profile.api._
abstract class ExportPlatformTables[T, U] private[models] () {
val tickets: TableQuery[_ <: ExportedVulnerabilities[T, U]]
val projects: TableQuery[_ <: ExportedVulnerabilityProjects]
def schema: models.profile.DDL = tickets.schema ++ projects.schema
}