retrospring/db/migrate/20141129211448_add_motivation_header_to_users.rb
2014-11-29 22:34:11 +01:00

5 lines
159 B
Ruby

class AddMotivationHeaderToUsers < ActiveRecord::Migration
def change
add_column :users, :motivation_header, :string, default: '', null: false
end
end