hi i have table in MySql as user_role and it have two columns Userid (int) and RoleId (int) and the combination of both is a primary key now how can i represent that in sails.js model User_role.js you can see the model bellow
attributes: {
UserId:{type:"number"},
RoleId:{type:"number"}
}
now I would like to add them both as a primary key so can any one help me with that.