Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
6answers
2k views

Django workflow when modifying models frequently?

as I usually don't do the up front design of my models in Django projects I end up modifying the models a lot and thus deleting my test database every time (because "syncdb" won't ever alter the ...
17
votes
7answers
3k views

Automatically create an admin user when running Django's ./manage.py syncdb

My project is in early development. I frequently delete the database and run manage.py syncdb to set up my app from scratch. Unfortunately, this always pops up: You just installed Django's auth ...
10
votes
4answers
3k views

can i use a database view as a model in Django?

i'd like to use a view i've created in my database as the source for my django-view. Is this possible, without using custom sql? ****13/02/09 UPDATE********* Like many of the answers suggest, you ...
4
votes
2answers
480 views

How to get './manage.py syncdb' to create additional views or run custom SQL?

Is there a way to run some custom SQL statements after syncdb does it thing creating the tables for the models? Specifically, I would like to create some database views. Thanks in advanced.
3
votes
1answer
130 views

Django flush vs sqlclear & syncdb

Can anyone tell if there is a difference between >manage.py flush # or reset and >manage.py sqlclear appname | python manage.py dbshell >manage.py syncdb
3
votes
4answers
93 views

Is there a way to update the database with the changes in my models? [closed]

Possible Duplicate: update django database to reflect changes in existing models I've used Django in the past and one of the frustrations I've had with it as an ORM tools is the inability ...
3
votes
4answers
797 views

In django, how do I call the subcommand 'syncdb' from the initialization script?

I'm new to python and django, and when following the Django Book I learned about the command 'python manage.py syncdb' which generated database tables for me. In development environment I use sqlite ...
2
votes
1answer
257 views

Getting error with SOUTH and django migration

I got this error while migrating Sentry app in django. I am using mysql ! Since you have a database that does not support running ! schema-altering statements in transactions, we have had ! to ...
2
votes
1answer
284 views

Testing Django apps that use South migrations

I'm trying to create some Functional tests for a Django app that uses South migrations. Eventually, I will also be creating Twill tests. When I try to run the existing tests, the test database is not ...
2
votes
1answer
210 views

Django All SQL from syncdb

This may be a real stupid question. But how do you get ALL sql statements django-admin.py is going to run or does run from a syncdb command?
2
votes
1answer
1k views

django manage.py syncdb not working?

Trying to learn Django, I closed the shell and am getting this problem now when I call python manage.py syncdb, any idea what happened?: I've already set up a db. I have manage.py set up in the ...
2
votes
1answer
378 views

Can someone help clarify my confusion about syncdb and import loops, 'Do you have to be explicit on imports?'

I have been having a difficult time building the database with syncdb on Python2.5. I think that some of this issue is because of the use of wildcard* for importing forum.models it seems to be ...
2
votes
2answers
2k views

manage.py syncdb doesn't add tables for some models

My second not-so-adept question of the day: I have a django project with four installed apps. When I run manage.py syndb, it only creates tables for two of them. To my knowledge, there are no problems ...
2
votes
6answers
12k views

Django/Python Beginner: Error when executing python manage.py syncdb - psycopg2 not found

I have Pythong2.6, psycopg2 and pgAdmin3 installed using Macports. My settings.py is: DATABASE_ENGINE = 'postgresql_psycopg2' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or ...
1
vote
1answer
44 views

Django's syncdb is inserting duplicated entries in auth_permission table

I have created my models in django and run manage.py syncdb Everything was ok, until I added a new model in an existing app. When I run syncdb again, duplicated entries were inserted in ...
1
vote
2answers
63 views

unable to create table using django syncdb

I am quite new to django and web framework development and I tired my hands on creating tables by using the inbuilt django models and then running the syncdb command to create it automatically . ...
1
vote
3answers
66 views

How to do a syncdb with django, when migrations are also involved

when I do a syncdb I get the following error everytime: Not synced (use migrations): - deals - analytics (use ./manage.py migrate to migrate these) And when I run sudo python manage.py migrate. ...
1
vote
1answer
78 views

Django - Why doesn't syncdb respect the database router?

I have set up a database router to direct different apps and different models to different databases using the db_for_read and db_for_write router methods. That works very well, except that ...
1
vote
3answers
146 views

Django create groups on init, extending superuser profile

I create a site in Django and here is my Question How to make something like this: On init (for example, when someone run "syncdb"?) I need to create a group with permissions and extend superuser ...
1
vote
1answer
158 views

Do I need to call syncdb before or after South migrate

I'm new to South so I am wondering if I ever need to call ./manage.py syncdb or doing ./manage.py schemamigration appname --auto ./manage.py migrate appname is sufficient in all cases South can ...
1
vote
2answers
239 views

Django: Force table creation order on syncdb

I have a Profile model that is used to define a profile for a User from the auth application. Also, I have a signal that will create an empty profile each time a user is created. The problem is that, ...
1
vote
2answers
247 views

how to restore dropped table with django-south?

I wanted to clear out a table in my DB, so I dropped the table. Normally I would do manage.py syncdb to re-create it. However, the answer here says not to use syncdb anymore. So, what do I do instead? ...
1
vote
1answer
251 views

Django: app_label problem when declaring base models outside models.py

I have an abstract Container class which allows derived models to hold some content blocks such as images, text, etc., which are also separate models. For db tidiness, I want tables for those models ...
1
vote
1answer
109 views

Django - Running custom method on syndb command

I'm wondering if there is a way to run a custom method when syncdb is executed. What I am trying to accomplish is to load a mail template into the database. As I need nearly the same template in ...
1
vote
1answer
96 views

Can Django Syncdb handle compressed initial_data.json.tgz fixtures?

Need to keep the size of the package down, so is it possible to compress the initial data in some supported format for syncdb to pickup?
1
vote
3answers
300 views

How *not* to run Django code on syncdb

I have some server startup code that is lying in the "models.py" of one of my Django apps. I need to run that code on server startup time. The problem is, that code issues a SQL query, which prevents ...
1
vote
2answers
589 views

Django syncdb on SQL initial data using PostgreSQL yields “column … does not exist”

Platform: Python 2.5, Django development root, PostgreSQL 8.4, Windows Vista Ultimate SP2. Procedure: Django Documentation, Release 1.0, link text, Section 34.2, Providing initial SQL data. CODE: ...
1
vote
1answer
213 views

Right way to create custom pgsql types in django

What is the right way to create custom pgsql types for django application so that each time database is created with syncdb, all custom types are created prior to creating any tables (so that tables ...
1
vote
3answers
4k views

Django/Python EnvironmentError?

I am getting an error when I try to use syncdb: python manage.py syncdb Error message: File "/usr/local/lib/python2.6/dist-packages/django/conf/__init__.py", line 83, in __init__ raise ...
1
vote
1answer
609 views

Django syncdb locking up on table creation

I've added new models and pushed to our staging server, run syncdb to create their tables, and it locks up. It gets as far as 'Create table photos_photousertag' and postgres output shows the notice ...
0
votes
1answer
39 views

django manage.py syncdb fails after creating superuser

djnago1.3.1 python2.7.2+ ubuntu 11.10 I am making syncdb, after creating superuser I've got that error: You just installed Django's auth system, which means you don't have any superusers defined. ...
0
votes
2answers
32 views

Is there any way to get syncdb to pull in models that aren't in models.py?

I have a file filled with models embedded deep within my app and not in a models.py file or models directory. Basically it's a file that points to tables on a legacy database, which is why I put it ...
0
votes
1answer
36 views

Sequence of model creation in Django

I have created a permission system in django. It is inside an App called HelperApp. First it inputs permissions definition into the database with post_syncdb signals(sender is the models of HelperApp, ...
0
votes
2answers
40 views

syncdb not adding fixtures in 3rd party project

I've written a pretty simple Django application called django-locality which takes the headache out of working with countries and territories. It provides a lot of initial data for countries and ...
0
votes
1answer
57 views

Adding ManyToMany field on the fly in django

I have created a model and done the "syncdb" operation. It was executed fine. Also I had inserted many records to that model, then I created one more model which needs to be connected as M2M for the ...
0
votes
2answers
97 views

How can I drop the tables and syncdb for just one app in my Django project?

I have a Django app deployed on DjangoZoom. People have been signing up, so there are users in that database. I want to restructure the database of one of my apps within the project. My plan was to ...
0
votes
0answers
6 views

Django-jython how to auto syncdb on app deployment

Is there a way to deploy a Django-jython app and during deployment initialization take from user the database parameters and syncdb-load initial data using those parameters?
0
votes
0answers
66 views

django syncdb initial_data.json replaced by a directory called initial_data

Folks, Is there a good way to have syncdb trigger the initial data in a fixture directory with a directory structure of: project/website/ project/website/fixtures/ ...
0
votes
1answer
155 views

Django syncdb ignore a specific model

Is there a way to make syncdb ignore a specific table? I decided to declare a M2M twice because from one model I wanted it to appear as a simple M2M that works with filter_horizontal. In another I ...
0
votes
3answers
161 views

Problem running syncdb in django

I am trying to go through the django docs tutorial and having a problem syncing mysql. On the command python manage.py syncdb I get the following error (note I'm running in windows 7): ... File ...
0
votes
3answers
122 views

syncdb ignores imported models

I have a project, structured like this: project/ __init__.py db/ models/ __init__.py article.py project.py ontology/ __init__.py ...
0
votes
1answer
80 views

Django: application skipped in syncdb

I have several applications declared in settings.py: INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', ...
0
votes
1answer
184 views

How to disable django.contrib.auth completely?

Because I'm using my own authentication and authorization system (with my own User/Permission model), I would like to completely disable this standard app from Django. I've tried removing the ...
0
votes
1answer
915 views

how to use manage.py syncdb outside of Django project, such as in Tornado?

I was looking through http://lincolnloop.com/blog/2009/sep/15/using-django-inside-tornado-web-server/ and I thought it was interesting and useful to use parts of Django if we need it in Tornado. ...
0
votes
3answers
315 views

Django post_syncdb signal handler not getting called?

I have a myapp/management/__init__.py that is registering a post_syncdb handler like so: from django.db.models import signals from features import models as features def create_features(app, ...
0
votes
1answer
1k views

Can't get python.manage.py syncdb to work

I just created my first django app, initialized variables DATABASE_ENGINE and DATABASE_NAME in settings.py, but now when I run python manage.py syncdb, I get the following error Can somebody help? ...
0
votes
1answer
193 views

manage.py syncbd not syncing django.contrib apps

This is probably a setting error somewhere. I have a django app that works fine on my desktop with the developer server and sqlite3. I upload it to my server and syncdb and it only syncs my custom ...
0
votes
2answers
169 views

What does this error mean: The model User has two manually-defined m2m relations

I'm running into this error when I attempt to syncdb: auth.user: The model User has two manually-defined m2m relations through the model FavoriteQuestion, which is not permitted. Please consider using ...
0
votes
3answers
859 views

Django Is telling me table already exists on syncdb - can't figure out why

Posted the model at http://pastebin.com/f609771cc getting error: (yes it's windows) File "C:\Python25\lib\site-packages\MySQLdb\connections.py", line 35, in defaulterrorhandler raise ...
0
votes
2answers
370 views

Keep code from running during syncdb

I have some code that throws causes syncdb to throw an error (because it tries to access the model before the tables are created). Is there a way to keep the code from running on syncdb? something ...