def tupled =()

in core/src/main/scala/org/apache/pekko/persistence/jdbc/journal/dao/JournalTables.scala [49:70]


    def tupled = (apply _).tupled
  }
}

/**
 * For the schema added in 5.0.0
 * INTERNAL API
 */
@InternalApi
trait JournalTables {
  val profile: slick.jdbc.JdbcProfile

  import profile.api._

  def journalTableCfg: EventJournalTableConfiguration
  def tagTableCfg: EventTagTableConfiguration

  class JournalEvents(_tableTag: Tag)
      extends Table[JournalPekkoSerializationRow](
        _tableTag,
        _schemaName = journalTableCfg.schemaName,
        _tableName = journalTableCfg.tableName) {