mastodon/db/migrate/20160222143943_add_profile_fields_to_accounts.rb
2023-11-06 16:15:48 +00:00

12 lines
345 B
Ruby

# frozen_string_literal: true
class AddProfileFieldsToAccounts < ActiveRecord::Migration[4.2]
def change
change_table :accounts, bulk: true do |t|
t.column :note, :text, null: false, default: ''
t.column :display_name, :string, null: false, default: ''
t.column :uri, :string, null: false, default: ''
end
end
end