mastodon/db/migrate/20160222143943_add_profile_...

12 lines
345 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
class AddProfileFieldsToAccounts < ActiveRecord::Migration[4.2]
2016-02-22 09:00:20 -06:00
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
2016-02-22 09:00:20 -06:00
end
end