Problem:
Hey man, you add a two new fields to repository_profiles table here
|
add_column :repository_profiles, :entity_id, :integer, default: nil |
and here
|
add_column :repository_profiles, :entity_class, :string, default: nil |
But as my project was already runned the migration(lib/generators/arpa/templates/migration.rb) will don't run this anymore.
Solution
Create a new migration with these fields and force gem's user to run this.
Problem:
Hey man, you add a two new fields to repository_profiles table here
arpa/lib/generators/arpa/templates/migration.rb
Line 49 in 8b63031
and here
arpa/lib/generators/arpa/templates/migration.rb
Line 50 in dabe5b1
But as my project was already runned the migration(lib/generators/arpa/templates/migration.rb) will don't run this anymore.
Solution
Create a new migration with these fields and force gem's user to run this.