mirror of
https://github.com/funamitech/mastodon
synced 2024-12-01 00:08:39 +09: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
|