1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-08 15:53:16 +00:00
mastodon/db/migrate/20220829192633_add_languages_to_follows.rb

6 lines
140 B
Ruby
Raw Normal View History

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