class AddGoalFieldsToUsers < ActiveRecord::Migration[7.1] def change add_column :users, :total_required_hours, :integer, default: 480, null: false add_column :users, :weekly_target_hours, :integer, default: 12, null: false end end