Tagged Questions

1
vote
2answers
55 views

What does “Migrating a Django application” mean?

I kept thinking a lot about the meaning of migrating a Django app the last few days and heard about migrating Django apps with django-south. Maybe it's just the lack of sufficient English skills (as …
0
votes
1answer
28 views

Choice of database for a Django-based RSS application?

I'm planning a web application using Django, and it's based on a big pile of data from RSS feeds. What would be the best database to use to store the content of a lot of posts and metadata, as well as …
1
vote
1answer
36 views

Use the same Django models across two different databases in the same app

I have a set of Django models that are used in two databases (i.e. syncdb was run against two databases from the same app). Both databases are for production services (one database contains on-demand …
2
votes
4answers
58 views

How to organize a database in Django with multiple, distinct apps?

I'm new to Django (and databases in general), and I'm not sure how to structure the following. The sources of data I'll have for my site are: a blog for a few different games: a high score list …
2
votes
2answers
42 views

Django models generic modelling

Say, there is a Page that has many blocks associated with it. And each block needs custom rendering, saving and data. Simplest it is, from the code point of view, to define different classes (hence, …
0
votes
2answers
26 views

django tools for pushing preinstalled data to database

Hi all, It there a tool for django to install some static data (necessary data to have application runing ) to database? ./manage.py syncdb will make the database schema i db, some tool for pushing …
0
votes
2answers
42 views

Django - Designing Model Relationships - Admin interface and Inline

heya, I think my understanding of Django's FK and admin is a bit faulty, so I'd value any input on how to model the below case. Firstly, we have generic Address objects. Then, we have User's, who …
1
vote
4answers
75 views

How to disable Django query cache ?

In my Django application, I repeatedly run the same query on my database (e.g. every 10 seconds). I then create an MD5 sum over the queryset I receive and compare that to the MD5 sum I created in the …
1
vote
4answers
97 views

Django - Populating a database for test purposes.

I need to populate my database with a bunch of dummy entries (around 200+) so that I can test the admin interface I've made and I was wondering if there was a better way to do it. I spent the better …
1
vote
1answer
49 views

How do I migrate data from one model to another using South in Django?

I created a Django app that had its own internal voting system and a model called Vote to track it. I want to refactor the voting system into its own app so I can reuse it. However, the original app …
1
vote
2answers
47 views

Django: several tables for one model.

I have a model "Messages" which i use to store messages throughout the site. These are messages in discussions, private messages and probably chat. They are all stored in 1 table. I wonder if it will …
0
votes
2answers
56 views

Getting error when INSERT into MySQL.

_mysql_exceptions.Warning: Incorrect string value: '\xE7\xB9\x81\xE9\xAB\x94...' for column 'html' at row 1 def getSource(theurl, moved = 0): if moved == 1: theurl = …
0
votes
2answers
43 views

Django, Import tables as models

I would like to know if it's possible to use django over existing db tables that defines the models. Instead of defining models in order to create db tables
2
votes
3answers
85 views

What’s the best way to create a ‘history’ type model in django?

I'd like to create a feature for my Django app similar to Django admin's 'Recent Actions', in order to store history information on my other models. For example say I have two models called Book and …
1
vote
5answers
79 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 = …

1 2 3 4 5 6 next
15 30 50 per page