Merge pull request #291 from kmycode/upstream-20231116

Upstream 20231116
This commit is contained in:
KMY(雪あすか) 2023-11-17 08:54:09 +09:00 committed by GitHub
commit eaa9ade59b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
274 changed files with 3864 additions and 2574 deletions

View file

@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddURLToPreviewCardsStatuses < ActiveRecord::Migration[7.0]
def change
add_column :preview_cards_statuses, :url, :string
end
end

View file

@ -1020,6 +1020,7 @@ ActiveRecord::Schema[7.1].define(version: 2023_11_05_225839) do
create_table "preview_cards_statuses", primary_key: ["status_id", "preview_card_id"], force: :cascade do |t|
t.bigint "preview_card_id", null: false
t.bigint "status_id", null: false
t.string "url"
end
create_table "relays", force: :cascade do |t|