about summary refs log tree commit diff
path: root/db/migrate/20220829192658_add_languages_to_follow_requests.rb
blob: f98fabb220a8c150801768045ac4bf3957ea80e4 (plain) (blame)
1
2
3
4
5
class AddLanguagesToFollowRequests < ActiveRecord::Migration[6.1]
  def change
    add_column :follow_requests, :languages, :string, array: true
  end
end