mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-14 07:44:00 +01:00
10 lines
304 B
Scala
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
|
|
}
|