Hallo, Maybe this is an irrelevant question, but I have to define a model for an application without any primary-key. Is such definition possible in "Django"? Because I have to make a model from the below MySQL table which doesn't have any primary key
-- -- Table structure for table `usedInput` -- DROP TABLE IF EXISTS `usedInput`; CREATE TABLE `usedInput` ( `jobID` int(11) NOT NULL, `processorID` int(11) NOT NULL, `datasetID` int(11) NOT NULL, `filename` varchar(80) default NULL, `fileVersion` varchar(16) default NULL, KEY `input` (`jobID`,`processorID`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; Regards, Nader --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---