Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
131 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
2
votes
1answer
169 views

Django syncdb conflicting related_name when using inheritance and ForeignKey

This time I think it's not me being stupid but an actual conflict. I have the below code (simplified): from django.db import models class Alpha(models.Model): relation = ...
2
votes
2answers
431 views

django: update database schema without loosing data

What is the best solution if I want to upgrade (alter) my database schema (add new fields to tables by adding them just to django models) without loosing data in these tables? "syncdb" not adding them ...
2
votes
2answers
122 views

Why Django does not create full table from a model?

I have 2 models. I run manage.py syncdb but it creates only id fields for 2 models. How to make it generate the remaining fields? Please kindly advise. Your help is much appreciated! Here's my ...
2
votes
5answers
2k views

Django can't syncdb after drop/create database

I wanted to reset a database and issued a drop database followed by a create database on a postgresql server accessed through psycopg2 by a django app. When I do ./manage.py syncdb I get the ...
1
vote
0answers
95 views

How can I perform Django's `syncdb --noinput` with call_command?

>>> from django.core.managment import call_command >>> call_command('syncdb') executes the syncdb management command from within a python script. However, I want to run the ...
1
vote
2answers
167 views

Django syncdb can't find my apps

I'm a django newbie and have been having a problem. In my project root I created a folder called 'local_apps' and within it I put the app 'myapp'. I updated the INSTALLED_APPS within settings.py ...
1
vote
2answers
484 views

Django SYNCDB failes when adding super-user (Windows 7, mySQL, Django 1.2.4, mySQL 5.5)

syncdb fails when creating super user Django: v 1.2.4 Python: 2.6 MySQL Server: 5.5 Windows 7 Extra: MySQL-Python v1.2.3 What steps will reproduce the problem? 1. install the above programs 2. ...
1
vote
1answer
88 views

What is the best Django syncdb crash debugging technique?

What is the best Django syncdb crash debugging technique ? I've previously asked a question about a problem with manage.py syncdb returning an exception and the answer was that the app has a wrong ...
1
vote
2answers
550 views

Django unit-testing with loading fixtures for several dependent applications problems

I'm now making unit-tests for already existing code. I faced the next problem: After running syncdb for creating test database, Django automatically fills several tables like django_content_type or ...
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
1answer
74 views

Before syncdb, delete field from standard Django model

This is a follow-up question on Delete field from standard Django model. In short: a field can be dynamically deleted from a model that is already created, in this case the field User.email . So field ...
0
votes
2answers
37 views

syncdb - no such table error

When I try syncdb on my project , I've got error: return Database.Cursor.execute(self, query, params) django.db.utils.DatabaseError: no such table: main_region forms.py from main.models import ...
0
votes
0answers
209 views

Django Syncdb with Fabric causes SSH Exception?

When this command gets run through Fabric, it gives me this odd SSH error. The DB I'm syncing with is an RDS instance on AWS. The command works perfectly if I SSH in and run it manually. ...
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
1answer
205 views

syncdb not happening using south for migration

Synced: > django.contrib.auth > django.contrib.contenttypes > django.contrib.sessions > django.contrib.sites > django.contrib.messages > django.contrib.staticfiles > ...
0
votes
0answers
65 views

django auth google app engine development console

i build a website using djangoappengine but it seems that the table that should be available on console through localhost:8000/_ah/admin is not found there for app engine server. but django server ...
0
votes
1answer
770 views

Django syncdb error

I have django.contrib.auth in my installed apps and everything was was working about 10 minutes ago. I deleted the existed database because I had problems with south migrations. When I try to rebuild ...
0
votes
4answers
250 views

Django syncdb skipping an app

I have a Django project which has two apps (one created as debug test). For the debug test, syncdb does put the model in the database but for the other it does not. Both are in ...
0
votes
2answers
395 views

WIth PyCharm, why is the PYTHONPATH when running a Django project different from when running the manage.py syncdb task?

Shouldn't it be the same by default? If not, is there some way to fix this so that the same PYTHONPATH is used?
0
votes
1answer
150 views

how to create, syncdb, and access django model dynamically?

I defined an expense model for an expense application, class Expense(models.Model): pub_date = models.DateTimeField() amount = models.IntegerField() memo = models.TextField() and I ...
0
votes
1answer
305 views

Install django on webfaction

I am trying to install django on Webfaction, and i have one all the steps like in the tutorial here: http://wiki.osqa.net/display/docs/Installing+OSQA+on+WebFaction But when i am trying to ...
0
votes
1answer
384 views

manage.py syncdb error while Django model using non-ascii verbose_name

I am pretty new to Django. I want the name of my models to be displayed in Chinese, so i used verbose_name in my meta class of my model, codes below: #this models.py file is encoded in unicode ...
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 ...