Retrospring/db/migrate/20141129211448_add_motivati...

6 lines
159 B
Ruby

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