You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Strange. What error are you getting? I updated the generator templates to use capital 'API' recently in the class name because I was getting an error when running db:migrate in a project with Rails 4.2.3. See #52 for the error.
Any migration with the word 'API' has all of the letter capitalized in the generator templates.
i.e.
migration xxxxxxx_add_api_ids.rb is
class AddAPIIds < ActiveRecord::Migration
It would either have to be:
migration xxxxxxx_add_a_p_i_ids.rb is
class AddAPIIds < ActiveRecord::Migration
OR
migration xxxxxxx_add_api_ids.rb is
class AddApiIds < ActiveRecord::Migration
FOLDER:
/lib/generators/surveyor/templates/db/migrate/
FILES:
add_api_id_to_question_groups.rb
add_api_ids_to_response_sets_and_responses.rb
add_api_ids.rb
api_ids_must_be_unique.rb
update_blank_api_ids_on_question_group.rb
The text was updated successfully, but these errors were encountered: