mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 14:36:04 +00:00
10 lines
273 B
Ruby
10 lines
273 B
Ruby
# 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
|