How do I store multiple values in a single attribute - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T02:28:47Zhttp://stackoverflow.com/feeds/question/1077227http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1077227/how-do-i-store-multiple-values-in-a-single-attribute1How do I store multiple values in a single attributeorokusaki2009-07-02T23:38:14Z2009-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-1Answer by tdelev for How do I store multiple values in a single attributetdelev2009-07-02T23:45:30Z2009-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#10772537Answer by Gareth Simpson for How do I store multiple values in a single attributeGareth Simpson2009-07-02T23:48:41Z2009-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>