Crosswalk Table with No Primary Key
9 Feb
Problem I have a “crosswalk” table like so: CREATE table `usergroup` ( `userId` int NOT NULL DEFAULT ”, `groupId` int NOT NULL DEFAULT ”, KEY `userId` (`userId`, `groupId`) ) So it has no need for a primary key. However, when I want to access the table in Yii, like so: $user->group->groupName I [...]
