It may be easier to change column names using migrations. Otherwise, you will have to change the gems that you use, and then pack them in the vendor / gems so that they worsen.
- script / generate migration down_case_table_names_and_columns
- record migration
- rake db: migrate
For each table:
rename_table :OLD_NAME, :new_name
For each column:
rename_column :COLUMN_NAME, :column_name
, , fyi - . , , . .