-
Notifications
You must be signed in to change notification settings - Fork 369
Closed
Labels
Description
Hi,
Here is part of my table:
mysql> desc webperformance;
+--------------------------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------------------------+--------------+------+-----+---------+-------+
| datekey | int(10) | NO | PRI | | |
| domain | varchar(30) | NO | PRI | | |
| url | varchar(128) | NO | PRI | | |
| domainLookupTime | int(10) | YES | | NULL | |
| connectEstablishTime | int(10) | YES | | NULL | |It has a composite key with 3 columns datekey,domain and url, and has no id.
I know that the orm might expect every table has a primary key named id or just specify a column instead. I just wander it also spports composite key, thanks.
Just come from #132
Reactions are currently unavailable