retrospring/db/migrate/20141104143648_add_display_name_to_users.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
159 B
Ruby
Raw Normal View History

2023-10-20 01:37:34 +02:00
# frozen_string_literal: true
class AddDisplayNameToUsers < ActiveRecord::Migration[4.2]
2014-11-04 15:38:27 +01:00
def change
add_column :users, :display_name, :string
end
end