1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 23:26:42 +09:00
YuruToot/db/migrate/20211112011713_add_language_to_preview_cards.rb
2023-11-06 16:15:48 +00:00

14 lines
325 B
Ruby

# frozen_string_literal: true
class AddLanguageToPreviewCards < ActiveRecord::Migration[6.1]
def change
safety_assured do
change_table(:preview_cards, bulk: true) do |t|
t.column :language, :string
t.column :max_score, :float
t.column :max_score_at, :datetime
end
end
end
end