Fixed issues not exporting when they disappear

This commit is contained in:
Šesták Vít
2016-12-13 23:37:18 +01:00
parent 2d3e1cea0a
commit 5680eec2d5
7 changed files with 58 additions and 27 deletions

View File

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