Change quote IDs to use snowflake IDs (#34551)

This commit is contained in:
Claire 2025-04-26 01:24:26 +02:00 committed by GitHub
parent a97647158c
commit 8f59b63176
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 21 additions and 2 deletions

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[8.0].define(version: 2025_04_22_085303) do
ActiveRecord::Schema[8.0].define(version: 2025_04_25_134654) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_catalog.plpgsql"
@ -871,7 +871,7 @@ ActiveRecord::Schema[8.0].define(version: 2025_04_22_085303) do
t.string "url"
end
create_table "quotes", force: :cascade do |t|
create_table "quotes", id: :bigint, default: -> { "timestamp_id('quotes'::text)" }, force: :cascade do |t|
t.bigint "account_id", null: false
t.bigint "status_id", null: false
t.bigint "quoted_status_id"