0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-01-02 10:37:08 +00:00
mastodon/db/migrate/20181226021420_add_also_known_as_to_accounts.rb
2019-01-10 18:46:17 +01:00

6 lines
148 B
Ruby

class AddAlsoKnownAsToAccounts < ActiveRecord::Migration[5.2]
def change
add_column :accounts, :also_known_as, :string, array: true
end
end