0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-01-26 22:57:42 +00:00
mastodon/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