retrospring/db/migrate/20141129211448_add_motivation_header_to_users.rb
2020-04-19 18:10:31 +02:00

5 lines
164 B
Ruby

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