20220829192658_add_languages_to_follow_requests.rb 186 B

1234567
  1. # frozen_string_literal: true
  2. class AddLanguagesToFollowRequests < ActiveRecord::Migration[6.1]
  3. def change
  4. add_column :follow_requests, :languages, :string, array: true
  5. end
  6. end