Adriely Dourado
Results
2
issues of
Adriely Dourado
I encountered a problem when trying to use Ruby 3.2.2 in conjunction with the soap4r-ng gem. It seems that there is an incompatibility that prevents the gem from working correctly...
Create the table ``` create_table :people, primary_key: [:project_id, :person_id] do |t| t.binary :project_id t.binary :person_id t.string :name, null: false end ``` The model looks like this: ``` class Person <...