From 1df2577b893727601c21fedbb48ddbaa5b54ce4c Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Sun, 25 Dec 2022 02:48:37 +0000 Subject: [PATCH] db: add quote_id to statuses table --- db/schema.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/db/schema.rb b/db/schema.rb index 01a95c0f29..8bacd84d9c 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -943,6 +943,7 @@ ActiveRecord::Schema.define(version: 2022_11_04_133904) do t.datetime "edited_at" t.boolean "trendable" t.bigint "ordered_media_attachment_ids", array: true + t.bigint "quote_id" t.index ["account_id", "id", "visibility", "updated_at"], name: "index_statuses_20190820", order: { id: :desc }, where: "(deleted_at IS NULL)" t.index ["account_id"], name: "index_statuses_on_account_id" t.index ["deleted_at"], name: "index_statuses_on_deleted_at", where: "(deleted_at IS NOT NULL)"