1
vote
5answers
53 views
Django: Ordering objects by their children’s attributes
Consider the models:
class Author(models.Model):
name = models.CharField(max_length=200, unique=True)
class Book(models.Model):
pub_date = models.DateTimeField()
author = mode …
1
vote
2answers
40 views
Django db reset without loading fixtures
Is there an easy way to reset a django database (i.e. drop all data/tables, create new tables and create indexes) without loading fixture data afterwords? What I want to have is ju …
0
votes
1answer
41 views
Should I normalize the intermediary model in django?
Say I have four pair-wise M2M related models: A, B, C, D. I have created an intermediary model ABCD to establish relationships between them. If there are many duplicate column pair …
1
vote
2answers
50 views
Foreign key needs a value from the key’s table to match a column in another table.
Pardon the excessive amount of code, but I'm not sure if I can explain my question otherwise
I have a Django project that I am working on which has the following:
class Project(m …
0
votes
2answers
129 views
psycopg2 disconnects from server
I've been tackling this for a while. I setup a completely new machine. I've installed a fresh copy of postgresql and all my other dependencies. Basically, I get these database disc …
0
votes
3answers
91 views
Django database scalability
Hi ALL:
We have a new django powered project which have a potential heavy-traffic characteristic(means a heavy db interaction). So we need to consider the database scalability in …
0
votes
2answers
72 views
URLs stored in database for Django site
Hi guys,
I've produced a few Django sites but up until now I have been mapping individual views and URLs in urls.py.
Now I've tried to create a small custom CMS but I'm having tr …
2
votes
1answer
69 views
Django SAAS projects
Hi Djangonauts,
I am almost done developing a Django project (with a few pluggable apps).
I want to offer this project as a SaaS (something like 37signals.com).
i.e: customer1.p …
0
votes
1answer
29 views
Complex ordering in Django
I have a Django model for Cat which has a foreign key Dog. The Dog model has a date key timestamp. I want to order the cats, using Cat.objects.order_by, according to the timestamps …
6
votes
2answers
68 views
Unique BooleanField value in Django?
Suppose my models.py is like so:
class Character(models.Model):
name = models.CharField(max_length=255)
is_the_chosen_one = models.BooleanField()
I want only one of my C …
1
vote
2answers
62 views
Cronjobs in Django
I'm writing a database application where certain parts of the database might need updates based on time, not based upon user actions.
For example, there may be certain values that …
1
vote
5answers
202 views
Django-queryset get one object per field=foo
I have a basic FK to user, call it owner
class Baz(models.Model):
owner = models.ForeignKeyField(User)
....
....
Now, with a queryset of Baz's, is there something …
2
votes
1answer
107 views
Django - How to get only 2 object for a combination of fields with a queryset
If I have
Model.objects.all()
I want to get only one object for any content_object=foo, object_id=N. How can I do that? Say I am ordering by -datetime. If I can get only one …
0
votes
3answers
35 views
Django data creation and commits
I'm not sure I 100% understand what the database does. If I just have some misconception, please point it out.
Let's say I have a function that wants to create 100 new entry in th …
3
votes
4answers
260 views
Race conditions in django
Here is a simple example of a django view with a potential race condition:
# myapp/views.py
from django.contrib.auth.models import User
from my_libs import calculate_points
def a …
