0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-01-08 13:37:11 +00:00
mastodon/db/migrate/20211112011713_add_language_to_preview_cards.rb

10 lines
273 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddLanguageToPreviewCards < ActiveRecord::Migration[6.1]
def change
add_column :preview_cards, :language, :string
add_column :preview_cards, :max_score, :float
add_column :preview_cards, :max_score_at, :datetime
end
end