1
vote
2answers
49 views

How can I retrieve data from multiple tables

I need to retrieve data from multiple tables, with a dynamically built filter that might or might not use data from any of the tables. So say I have this: class Solution(models.Model): name = ...
0
votes
1answer
38 views

Native schema migration tool in Django

I'm a longtime PHP (cakePHP) developer but thinking of trying Django out. Definitely I am missing something here. Django definitely does not suck because everyone in the whole internet seem to love ...
1
vote
1answer
23 views

What is the best practice to keep some tables in one database synchronized in other database?

I have 2 Django projects with their own databases. I want to have few models same in both databases. One app will only read those models and it cannot write new items. What is the best way to have ...
-1
votes
0answers
26 views

Django Comparison Shopping Site: How to Keep Prices Up to Date? [closed]

I'm creating a web app (as in application as a whole, not referring to a Django app) that has a comparison shopping component. After researching this, it appears that I'll be creating a database and ...
0
votes
1answer
44 views

Should I delete or set a variable to “deleted” in django/postgresql?

Specifically for my app, I have created this model in order to allow a user (the user_parent) to follow other users. class Follow(models.Model): user_parent = models.ForeignKey(User, unique=True, ...
0
votes
0answers
29 views

One to Many Relationship Django [migrated]

let say I want my User model to have only one location and my Post model to have many location. How Do I design the model? This is what I have in mind so far. Is this going to work? Do I need to ...
0
votes
1answer
18 views

Is it possible to route all admin db reads to a slave DB?

In Django is it possible to create a MultiDB Router to make admin pages to read from different DB
-2
votes
0answers
31 views

Friends table design with type (friends circle) - circle can be different for both

My Django app has Friend model that links user_a to User, user_b to User. I am using taggit to define friend type(circle) for friends. I'm linking these to model Friend. But, in this design, if ...
0
votes
4answers
55 views

Django ManyToMany Field

I need to make a smart menu, for which I need a ManyToMany relation. My model is: from django.db import models class Health_plan(models.Model): a = models.IntegerField () b = ...
-4
votes
0answers
32 views

Use views in Databases with Django [closed]

I have a doubt. Users Django, somebody use Views in Database? E.g this views can accessed in another application? Thanks
0
votes
0answers
44 views

django postgresql insert or update on table violates foreign key constraint

I'm getting the error message: insert or update on table "quizzer_progress" violates foreign key constraint. DETAIL: Key (word_id)=(4700) is not present in table "quizzer_alone_words". but ...
1
vote
1answer
58 views

Django, Models and multiple databases

Python version: 2.7 & Django version: 1.5.1 I'm currently working on developing a backend app for phpbb3. Our current implementation in PHP is eating up far too many resources. I'm about 90% ...
-1
votes
1answer
22 views

a contest web site and it's data base

I'm designing a contest web site with django. each time many teams can participate in the contest and each team can have maximum 3 members. I want to know what's the best way to do it. (the ...
0
votes
1answer
34 views

Django models.Model all column values end with L?

In the docs tutorial docs where you use the shell on tutorial 1, it shows you how to look at the values of a model object. When I use model_object.__dict__ to see all the columns and its values ...
0
votes
1answer
32 views

How to use Django DateTimeField's default

I'm trying to use datetime.datetime.now as the default for my pub_date column, but keep getting an error. DatabaseError: (1054, "Unknown column 'archive_app.pub_date' in 'field list'") I'm just ...
0
votes
1answer
26 views

URL and database routing based on language

I have URLs in the following form: http://example.com/[language_code]/xxx I need to do: 1. Based on the language code, I want to select appropriate DB or raise Http 404 if language code is not ...
0
votes
3answers
37 views

Django Models: How to express the following logic…?

I'm facing a difficulty on a schema and i need help with the following logic. I have a table Client and a table Rights. The table Client represents a client with some properties and the table Rights ...
0
votes
1answer
34 views

Django, link 2 tables in different database

I have 2 DB Main DB have table for model class Entry(m.Model): value = m.CharField(max_length=250, null=True, blank=True) Seconadry have this class Feature(m.Model): linked = ...
1
vote
1answer
46 views

How to find those users whose preferences are a superset of a given set preference_list?

this is a problem I've been pondering for a while, and I would want to hear opinions from more experienced Django developers than me. Say, I have the following models: class Preference(models.Model): ...
0
votes
1answer
36 views

Django Queryset sort by order_by with relatedManager

I am tryint to get objects sorted. this is my code: ratings = Rate.objects.order_by(sortid) locations = Location.objects.filter(locations_rate__in=ratings).order_by('locations_rate').distinct('id') ...
0
votes
2answers
59 views

django How do I get the user id in the data base with a foreign key

I'd like to get the user id in the db automatically when the user fill a form, but I don't know what I have to do. I'm working on that for all day long, I tried to do it by an hidden input but I'm not ...
0
votes
0answers
12 views

django relatedManager understanding issue

I am stuck again in understanding of how to work with Django RelatedManager. I like it, and find it very cool thing to use. but I am somehow still not comfortable with the logic. I have this: ...
0
votes
0answers
40 views

Multiple databases in Django 1.5

I am using multiple databases in Django 1.5. The default database is always available, but the secondary databases are not always available at the computer. When they are available everything works ...
0
votes
1answer
19 views

How can i set my heroku's django enviroment (especifically DATABASE_URL) in order to keep local and remote database development?

I would like to know how set my setting.py seccion **DATABASES['default'] = dj_database_url.config(default) # Honor the 'X-Forwarded-Proto' header for request.is_secure() SECURE_PROXY_SSL_HEADER = ...
0
votes
0answers
38 views

How to use .extra with .annotate

I am trying to get a field in a queryset which depends on the result of the annotations. I tried using extra on an annotated queryset, which doesn't seem to work. Lets say my models looks like this: ...
0
votes
0answers
53 views

Django Database Single Cell Overwrite

I am attempting to save a response from a text input to a single cell in a sqlite3 database table without writing over the rest of the information stored in that line of the table. I need to do this ...
0
votes
2answers
29 views

Unique in ModelForm, how to get back to the form with error message?

I have found some posts about more or less the same situation like this one or this other one, but I was not able to adapt any of these to my situation. What I would like is to return to my form with ...
0
votes
1answer
29 views

When should we use ForeignKey and ManyToOne in djangp

There are two models College, Department class College(models.Model): name = models.CharField(max_length=200) uid = models.CharField(max_length=10, unique=True) website = ...
0
votes
0answers
30 views

How can I go to an older version of schema?

I have a Postgre SQL database in Heroku. I've had some problems. I needed to delete some local migration files and create brand new schema migration files (which worked) that had all migrations ...
1
vote
1answer
45 views

prefetch limited number of related objects in django

I want to display list of Posts with 5 latest Comments for each of them. How do I do that with minimum number of db queries? Post.objects.filter(...).prefetch_related('comment_set') retrieves all ...
1
vote
1answer
49 views

many to many field - django model - understanding

i am trying to implement small project where one person can add another person as a friend. i want to model this relationship in database: i thought, i will do another model called friendship and i ...
0
votes
1answer
37 views

IntegrityError at non-existing field

I'm having troubles with adding new copy of existing model Clients, which looks like: class Client(models.Model): user = models.OneToOneField(User) # Extending default user model organization = ...
2
votes
1answer
71 views

django related manager - in template

i am trying to show the latest rating score of a location. i have 2 tables(django models) Class Location(models.Model): locationname = models.CharField() ... Class Rating(models.Model): ...
1
vote
4answers
87 views

Django sql order by

I'm really struggling on this one. I need to be able to sort my user by the number of positive vote received on their comment. I have a table userprofile, a table comment and a table likeComment. The ...
2
votes
1answer
52 views

Django atomic check and decrement

I have a model variable, let's call it .actions which is an integer. The idea is that people can only do stuff if there are actions left. How do I do a check if actions are > 0 and subsequently ...
0
votes
2answers
29 views

Trigger Django module on Database update

I want to develop an application that monitors the database for new records and allows me to execute a method in the context of my Django application when a new record is inserted. I am planning to ...
1
vote
1answer
89 views

python models.py syncdb does not work

Second day on my journey to install Python 2.7.2 & Django 1.5 and create my first application, and now I can not sync models.py and update my database. Tools: Windows Vista, Putty SSH Location: ...
0
votes
1answer
69 views

django model - queryset issue

I am trying to search for an item in db. there are two items in db, but i cannot get the second one somehow. with my code below the result is only the first row of Bewertung but not the second one. ...
0
votes
1answer
42 views

django many-to-many model simple logic

i am trying to understand this manytomany-field logic in django models. i have two django models: location and image. and i have another third django model named location_has_image. this model is ...
0
votes
1answer
53 views

South Data Migration With OneToOne Key

I'm doing a sqlite3 data migration using South. My old schema has the following model for UserProfile: class UserProfile(models.Model): user = models.OneToOneField(User) weekOne = ...
0
votes
1answer
120 views

The field does not have a default specified, yet is NOT NULL

I have no idea what Django is trying to tell me. I have a model, WeekTwo, which inherits from Week, which inherits from modelsModel. I have another model, UserProfile. I want to use WeekTwo as a ...
1
vote
3answers
64 views

django model object filter

i have tables called 'has_location' and 'locations'. 'has_location' has user_has and location_id and its own id which is given by django itself. 'locations' have more columns. Now i want to get all ...
0
votes
2answers
28 views

django - object filter logic

i am stuck in this state: i have locations table in db. and i also have rating table, which contains rating of each location referencing by the id of each location. now i want to get the first 5 ...
1
vote
0answers
113 views

Django query with .order_by('title') doesn't give alphabetical order, sorts by date changed

With the following model in my Django app: class Story(models.Model): #1:1 Fields title = models.CharField(max_length=100, unique=True) tagline = models.TextField(blank=True, null=True) ...
0
votes
1answer
35 views

Django defering the foreign key look up

Working a django project and trying to speed up the calls. I noticed that Django automatically does a second query to evaulate any foreign key relationships. For instance if my models look like: ...
1
vote
1answer
114 views

How to make Django management command not open a transaction?

I'm writing a management command where I want to change the default isolation level. Django and my database will default it to "READ COMITTED" and I need it to be "READ UNCOMMITTED" only for this ...
1
vote
2answers
61 views

django get default value from database stored procedure

Is there any way I can set the auto field id of a django model to pick its value from a database procedure. for example: class Service(models.Model): id = models.CharField(max_length=50, ...
1
vote
1answer
361 views

How to reset db in Django? I get a command 'reset' not found error

Following this Django by Example tutotrial here: http://lightbird.net/dbe/todo_list.html The tutorial says: "This changes our table layout and we’ll have to ask Django to reset and recreate ...
0
votes
1answer
42 views

Does each application in a Django project has its own set of database tables? If yes, can these tables be shared?

Each Django app makes its own database tables Is it possible to share these database tables amongst various Django apps?
0
votes
1answer
53 views

Django variables with a list of values

I was wondering if there was a better way to implement this: I have a model with several fields. Each field needs to have multiple date ranges with corresponding values. So for example, I might have a ...

1 2 3 4 5 17