diff --git a/generated/app/db/GeneratorInvocationsDao.scala b/generated/app/db/GeneratorInvocationsDao.scala index ba0e11c42..018ded529 100644 --- a/generated/app/db/GeneratorInvocationsDao.scala +++ b/generated/app/db/GeneratorInvocationsDao.scala @@ -207,9 +207,9 @@ class GeneratorInvocationsDao @javax.inject.Inject() (override val db: play.api. private val InsertQuery: io.flow.postgresql.Query = { io.flow.postgresql.Query(""" | insert into public.generator_invocations - | (key, organization_key, application_key, created_at, updated_at, updated_by_guid, hash_code) + | (id, key, organization_key, application_key, created_at, updated_at, updated_by_guid, hash_code) | values - | ({key}, {organization_key}, {application_key}, {created_at}::timestamptz, {updated_at}::timestamptz, {updated_by_guid}, {hash_code}::bigint) + | ({id}, {key}, {organization_key}, {application_key}, {created_at}::timestamptz, {updated_at}::timestamptz, {updated_by_guid}, {hash_code}::bigint) """.stripMargin) } diff --git a/generated/app/db/SessionsDao.scala b/generated/app/db/SessionsDao.scala index 748b73dee..b5ecbfb36 100644 --- a/generated/app/db/SessionsDao.scala +++ b/generated/app/db/SessionsDao.scala @@ -242,9 +242,9 @@ class SessionsDao @javax.inject.Inject() (override val db: play.api.db.Database) private val InsertQuery: io.flow.postgresql.Query = { io.flow.postgresql.Query(""" | insert into public.sessions - | (user_guid, expires_at, created_at, created_by_guid, updated_at, updated_by_guid, hash_code) + | (id, user_guid, expires_at, created_at, created_by_guid, updated_at, updated_by_guid, hash_code) | values - | ({user_guid}::uuid, {expires_at}::timestamptz, {created_at}::timestamptz, {created_by_guid}::uuid, {updated_at}::timestamptz, {updated_by_guid}::uuid, {hash_code}::bigint) + | ({id}, {user_guid}::uuid, {expires_at}::timestamptz, {created_at}::timestamptz, {created_by_guid}::uuid, {updated_at}::timestamptz, {updated_by_guid}::uuid, {hash_code}::bigint) """.stripMargin) } diff --git a/generated/app/db/TasksDao.scala b/generated/app/db/TasksDao.scala index 6f755f4d8..09f2334e5 100644 --- a/generated/app/db/TasksDao.scala +++ b/generated/app/db/TasksDao.scala @@ -359,9 +359,9 @@ class TasksDao @javax.inject.Inject() (override val db: play.api.db.Database) ex private val UpsertQuery: io.flow.postgresql.Query = { io.flow.postgresql.Query(""" | insert into public.tasks - | (type, type_id, organization_guid, num_attempts, next_attempt_at, errors, stacktrace, data, created_at, updated_at, updated_by_guid, hash_code) + | (id, type, type_id, organization_guid, num_attempts, next_attempt_at, errors, stacktrace, data, created_at, updated_at, updated_by_guid, hash_code) | values - | ({type}, {type_id}, {organization_guid}::uuid, {num_attempts}::integer, {next_attempt_at}::timestamptz, {errors}::json, {stacktrace}, {data}::json, {created_at}::timestamptz, {updated_at}::timestamptz, {updated_by_guid}, {hash_code}::bigint) + | ({id}, {type}, {type_id}, {organization_guid}::uuid, {num_attempts}::integer, {next_attempt_at}::timestamptz, {errors}::json, {stacktrace}, {data}::json, {created_at}::timestamptz, {updated_at}::timestamptz, {updated_by_guid}, {hash_code}::bigint) | on conflict(type_id, type) do update | set organization_guid = {organization_guid}::uuid, | num_attempts = {num_attempts}::integer,