in core/src/main/scala/org/apache/pekko/persistence/jdbc/snapshot/dao/SnapshotTables.scala [36:49]
def tupled = (apply _).tupled
}
}
trait SnapshotTables {
val profile: slick.jdbc.JdbcProfile
import profile.api._
def snapshotTableCfg: SnapshotTableConfiguration
class Snapshot(_tableTag: Tag)
extends Table[SnapshotRow](
_tableTag,
_schemaName = snapshotTableCfg.schemaName,
_tableName = snapshotTableCfg.tableName) {