1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-09 08:22:11 -05:00
tootlab-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