1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-01 08:18:48 +09:00
whippy-edition/db/migrate/20220829192633_add_languages_to_follows.rb

6 lines
140 B
Ruby

class AddLanguagesToFollows < ActiveRecord::Migration[6.1]
def change
add_column :follows, :languages, :string, array: true
end
end