Re: Django Linking Multiple Mysql tables with unique identifiers

2014-05-07 Thread G Z
Thanks that worked. On Tuesday, May 6, 2014 11:34:51 AM UTC-6, G Z wrote: > > So I'm trying to set up my django app and I want to link multiple tables > each with a unique key identifier. To test this i have the following > models. py > > from django.db import models > > # Create your models he

Re: Django Linking Multiple Mysql tables with unique identifiers

2014-05-07 Thread Daniel Roseman
On Tuesday, 6 May 2014 23:06:16 UTC+1, G Z wrote: > > Easier to be red > > Ok so I have three tables in my database Customer Vms and Vmspecs > > Vms is tied through customer by customer id through database id field and > vmspecs is tied to vms through the id field for Vms. However when I go into

Re: Django Linking Multiple Mysql tables with unique identifiers

2014-05-07 Thread G Z
Anyone? On Tuesday, May 6, 2014 11:34:51 AM UTC-6, G Z wrote: > > So I'm trying to set up my django app and I want to link multiple tables > each with a unique key identifier. To test this i have the following > models. py > > from django.db import models > > # Create your models here. > class

Re: Django Linking Multiple Mysql tables with unique identifiers

2014-05-06 Thread G Z
Easier to be red Ok so I have three tables in my database Customer Vms and Vmspecs Vms is tied through customer by customer id through database id field and vmspecs is tied to vms through the id field for Vms. However when I go into admin panel and try to add vmspecs to vms after connecting the

Django Linking Multiple Mysql tables with unique identifiers

2014-05-06 Thread G Z
So I'm trying to set up my django app and I want to link multiple tables each with a unique key identifier. To test this i have the following models. py from django.db import models # Create your models here. class Customer(models.Model): NAME = models.CharField(max_length=200) WEBSITE