mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-26 17:13:42 +01:00
9 lines
273 B
Ruby
9 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
|