I am having a domain class arHistory as follows:
package ars
import ars.AccessRequest
import gra.Users
class ArHistory {
Long id =2340
Users updatedby
Date updatedon
String requeststatus
static hasMany=[accessrequests:AccessRequest]
static constraints = {
requeststatus(blank:false, nullable:false)
}
Now after I run the application the GORM create tables ar_history and ar_history_access_request (the join table for one to many relationship)
The join table above has only 2 foreign keys, the table itself has no primary key id I wanted to know 3 things, 1) do I need to have a primary key id for the join table 2) if yes how do I create the id (do I create it manually through mysql) 3) whats the advantage of having hasMany() instead of having a class variable AccessRequest defined in ArHistory, is it just normalised data?
Regards Priyank