From d7cbeed13e0c909b130c9942ace6b918db779de3 Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Tue, 30 Aug 2022 11:39:28 +0530 Subject: [PATCH] fix: heorku deploy failure (#5338) * fix: heorku deploy failure * fix: set default stack to heroku-20 --- app.json | 1 + db/schema.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app.json b/app.json index 64edc4a81..055235032 100644 --- a/app.json +++ b/app.json @@ -48,6 +48,7 @@ "size": "FREE" } }, + "stack": "heroku-20", "image": "heroku/ruby", "addons": [ "heroku-redis", "heroku-postgresql"], "buildpacks": [ diff --git a/db/schema.rb b/db/schema.rb index b928a570d..6b41fc443 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -395,7 +395,7 @@ ActiveRecord::Schema.define(version: 2022_08_09_104508) do t.datetime "agent_last_seen_at" t.jsonb "additional_attributes", default: {} t.bigint "contact_inbox_id" - t.uuid "uuid", default: -> { "public.gen_random_uuid()" }, null: false + t.uuid "uuid", default: -> { "gen_random_uuid()" }, null: false t.string "identifier" t.datetime "last_activity_at", default: -> { "CURRENT_TIMESTAMP" }, null: false t.bigint "team_id"