Add InvestigationFacilityCycle relationship#263
Add InvestigationFacilityCycle relationship#263RKrahl merged 16 commits intoicat-schema-extensionfrom
Conversation
consistency with the entity name and the way the columns are created on a fresh install.)
…ject/icat.server into 259_investigation_facility_cycle
|
I have reviewed and tested Tom's changes. I found a few problems so corrected those and made a few improvements whilst I was reviewing and testing. I'm now happy with the changes and will approve the PR. @RKrahl as Tom mentioned, I don't know where the first two commits by you come from. I can see them listed under the 'Commits' tab but when I view the 'Files changed' tab I don't see those same changes listed there. Any ideas? |
RKrahl
left a comment
There was a problem hiding this comment.
I have just one minor comment. Otherwise this looks good for me.
src/main/java/org/icatproject/core/entity/InvestigationFacilityCycle.java
Outdated
Show resolved
Hide resolved
|
Now, I get errors from the tests: The version at 3263428 was fine, so apparently something went wrong with your merge of I'd suggest, I just drop the defective merge commit, e.g. force push 3263428 into |
|
That sounds like a good plan Rolf, cheers for sorting this. I fixed the merge conflicts on GitHub, which explains why it didn't pick up the difference in |
be28360 to
3263428
Compare
Actually, you wouldn't have noticed it doing the merge with the git command line either. The problem was that both branches made the same change, resulting in the same line of code. This goes beyond the capabilities of git to understand that the result of the merge needs to be different from what both source branches agree on. I needed to redo the same defective merge (using git command line) myself ending up again with a code that wouldn't build in order to understand what happened. |
Adds a many-to-many relationship between
InvestigationandFacility Cycleby creating anInvestigationFacilityCycletable, as proposed in #259. Forgive me if there is anything I have missed, this is my first time working on the icat project.@RKrahl has added some changes related to changing the order of SQL statements and fixing a Foreign Key name bug, however I'm not sure if this was intended to be on this branch?
closes #259