Post

Posts


Ruby on Rails - Scaffolding and Seeding Example

January 13, 2024 08:36

Create the modelrails g scaffold MasterGrant community_goal:string funding_source:string fund_name_type:string area_of_focus:string oversight_department:string oversight_division:string entity_name...

Ruby on Rails Migration Cheat Sheet

January 14, 2024 11:25

Change a database column from string to decimal rails g migration change_tfi_to_string_in_master_grants class change_tfi_to_decimal_in_MasterGrants < ActiveRecord::Migration[7.1] def change e...

Ruby on Rails examples

January 15, 2024 05:30

rails generate migration AddPartNumberToProducts part_number:string  rails c User.find(1).destroy