How do I store multiple values in a single attribute - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T02:28:47Z http://stackoverflow.com/feeds/question/1077227 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1077227/how-do-i-store-multiple-values-in-a-single-attribute 1 How do I store multiple values in a single attribute orokusaki 2009-07-02T23:38:14Z 2009-07-04T02:40:18Z <p>I don't know if I'm thinking of this the right way, and perhaps somebody will set me straight.</p> <p>Let's say I have a models.py that contains this:</p> <pre><code>class Order(models.Model): customer = models.foreignKey(Customer) total = models.charField(max_length=10) has_shipped = models.booleanField() class Product(models.Model): sku = models.charField(max_length=30) price = models.charField(max_length=10) </code></pre> <p>Now, obviously an order would contain products and not just a product. What would be the best way to add products to an order? The only way I can think is to add another field to 'Order' called 'products', and fill it with a CSV with a sku for each product in it. This, for obvious reasons is not ideal, but I'm not very good at this stuff yet and have no idea of what the better way is.</p> <p>(keep in mind this is pseudo code, so don't mind misspellings, etc.)</p> http://stackoverflow.com/questions/1077227/how-do-i-store-multiple-values-in-a-single-attribute/1077245#1077245 -1 Answer by tdelev for How do I store multiple values in a single attribute tdelev 2009-07-02T23:45:30Z 2009-07-02T23:45:30Z <p>You can create one more model which will serve as many-to-many relationship between Order and Products</p> <p>something like this</p> <pre><code>class OrderProducts(models.Model) product = models.ForeignKey(Product) order = models.ForeignKey(Order) </code></pre> http://stackoverflow.com/questions/1077227/how-do-i-store-multiple-values-in-a-single-attribute/1077253#1077253 7 Answer by Gareth Simpson for How do I store multiple values in a single attribute Gareth Simpson 2009-07-02T23:48:41Z 2009-07-04T02:40:18Z <p>What you're after is a many to many relationship between product and order.</p> <p>Something like:</p> <pre><code>class Order(models.Model): customer = models.foreignKey(Customer) total = models.charField(max_length=10) has_shipped = models.booleanField() products = models.ManyToManyField(Product) </code></pre> <p>see the docs <a href="http://www.djangoproject.com/documentation/models/many%5Fto%5Fmany/" rel="nofollow">here</a> and <a href="http://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.ManyToManyField" rel="nofollow">here</a>.</p>