`django-admin.py syncdb` is a command which creates the database tables for all apps in `INSTALLED_APPS` whose tables have not already been created.

learn more… | top users | synonyms

0
votes
2answers
35 views

django select app(s) for syncdb

First of all: please don't ask me: "Why would you need this?". Now the question itself: I have several applications installed in INSTALLED_APPS. Database is now empty and I want to synchronise only ...
0
votes
1answer
23 views

Django syncdb doesn't work after invoking inspectdb

I created a model from an existing PostgreSql database using inspectdb, when I try to do a syncdb,in order to generate the authorization tables, it generates the following error: CommandError: One or ...
0
votes
1answer
39 views

'DatabaseWrapper' object has no attribute 'get_server_version'

I have been using django-1.4.1. And I updated to django1.5. I inputted 'manage.py sql myapp' or 'manage.py syncdb' then, i got this error "'DatabaseWrapper' object has no attribute ...
0
votes
1answer
37 views

Relationship between models, by name, fails on syncdb

I have the 2 following models, and I'd like to link them with a ManyToMany relationship : www/hruser/models.py from django.db import models class HRuser(models.Model): """Custom user class.""" ...
1
vote
0answers
34 views

Django Satchmo DeserializationError when doing syncdb

When I do python manage.py syncdb it shows me this error: DeserializationError: could not determine a constructor for the tag 'tag:yaml.org,2002:python/long' I've installed and reinstalled ...
0
votes
2answers
48 views

Django: How to create a model from a definition in another module

Lets say I have this Django setup: appA - models.py - views.py - etc... global - models.py What I want is import the models from global.models in appA.models so that they are treated as ...
0
votes
2answers
34 views

Initializing after first superuser is created

I want to know if there are any specific signals sent when the first superuser is created. Am talking about when I run syncdb and am asked to create a super user. At that point I want to know if any ...
0
votes
2answers
65 views

with ./mange.py syncdb getting permission denied in django project

root@domU-xx-xx-39-04-x5-36:/opt/sana# ./manage.py syncdb -bash: ./manage.py: Permission denied I tried both django.db.backends.mysql and mysql for 'ENGINE' I am able to connect to root using ...
0
votes
3answers
262 views

Django project - can not sync data tables - syncdb (error: no module named XYZ)

I am following a tutorial on Django which is basically a series of short todos that lead to the building of a web application to manage bookmarks. So far I've: - installed Django 1.4.2 properly - ...
0
votes
1answer
132 views

django 'no such table' when syncdb

Here's my model: class BaseModelTalk(models.Model): name = models.CharField('Name', max_length = 100) slug = models.SlugField('Slug', blank = True) creator ...
0
votes
1answer
118 views

django syncdb does not appear to run my custom hook

I have some existing SQL statements that I'd like to use as a custom hook after the CREATE TABLE command, in [myapp]/sql/[model-name].sql. My app is in INSTALLED_APPS. I see listed if I run ...
1
vote
0answers
243 views

cmsplugin-zinnia throwing a No module namedEntryMenu

I've got an issue when trying to run python manage.py syncdb. I am building a site with django-CMS and adding cmsplugin-zinnia for blog features. But this is coming up and I can not figure out why, ...
1
vote
1answer
91 views

Django ManyToMany Through not syncing or migrating

I have this model (truncated here for brevity): class Meal(models.Model): host = models.ForeignKey(User, related_name="cooking") cost = models.IntegerField(default=1) summary = ...
0
votes
1answer
51 views

How to make Django models not prepend the app's name to the model if the model name is the app name?

So here's what's happening: I start an app called cars and create a model called Cars. When I syncdb, it creates the table cars_cars. How do I make it so that it just create the table cars? Also, to ...
1
vote
1answer
819 views

Django new syncdb superuser crash in pycharm

I have problem with create new DB in Django: bash -cl "/Library/Frameworks/Python.framework/Versions/2.7/bin/python /Applications/PyCharm.app/helpers/pycharm/django_manage.py syncdb ...
0
votes
0answers
241 views

Django syncdb doesn't create db tables

I've been troubleshooting this error with no luck. TemplateSyntaxError at /signup/ Caught DatabaseError while rendering: relation "signup_product" does not exist LINE 1: ..."duration", ...
0
votes
2answers
210 views

Is there a way to use Django's “syncdb” (or any alternative) to drop old tables and recreate the tables?

In the initial phase of development, I change the models around quite a lot. (I am learning django, and it's the way I think). I have to keep dropping the old tables and then performing a "syncdb" ...
1
vote
2answers
324 views

How to load initial_data (fixture) after migration and not after syncdb?

I have a bootstrap script that performs syncdb and migrate: import settings from django.core.management import setup_environ, call_command setup_environ(settings) ...
0
votes
0answers
242 views

Django Model syncdb creating existing tables

In django model I had a class named Invitation. I execute manage.py syncdb table Invitation is created. This is my first table. But when i create another class named Image and execute manage.py ...
1
vote
1answer
436 views

Django syncdb trying to insert duplicate rows when multiple databases are specified

I'm in the process of configuring my Django app for multiple databases, and as a stop-gap measure, I'm using the following configuration in my settings.py: READ_DATABASE = { 'ENGINE': ...
1
vote
1answer
576 views

Django syncdb error after updating to 1.4

So I was develpoing an app in django and needed a function from the 1.4 version so I decided to update. But then a weird error appeared when I wanted to do "syncdb" I am using the new manage.py and as ...
2
votes
2answers
193 views

is running django syncdb in production, post initial deployment safe?

I read somewhere that you would never run syncdb on a database, post its initial run. Is this true? I don't see what the problem could be. Do you?
0
votes
1answer
777 views

Heroku: django syncdb doesn't seem to do anything.

I pushed my app to heroku after making sure it works fine in my local environment. When I try to sync db using: heroku run myapp/manage.py syncdb I see just this. No tables are created. ...
3
votes
2answers
556 views

Heroku Django: Running a Worker

I'm following the Heroku Django tutorial. I believe I followed it exactly. I ran no additional commands besides what they asked for. However, when I get to the part where I sync the Celery and Kombu ...
0
votes
1answer
333 views

Django - YAML App Fixtures Order Conflicting

I have separate apps with a foreign key from a model in one model (the UserProfile model) to another app I've created. When I try to syncdb I'm getting that the foreign key id is NULL even though I ...
0
votes
1answer
151 views

Django not creating tables for an installed app

My django site was functioning before I installed Lion and had to reinstall everything related to development. Since then, I have deleted and recreated my database, but one of my two installed apps ...
0
votes
1answer
175 views

Problems while installing an application / no module named photologue

Hey there i got a problem installing photologue application. Im following installation instructions. ~/coffee$ python manage.py shell Python 2.6.1 (r261:67515, Mar 18 2009, 13:52:30) [GCC 4.1.2 ...
1
vote
1answer
149 views

Proper way to update model in Django

I keep modifying my model in Django. However after I do it I have to go into the database, delete the table manually and then manage.py syncdb. I tried manage.py reset <<app_name>> but ...
0
votes
1answer
663 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
60 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
102 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, ...
1
vote
1answer
216 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 ...
0
votes
2answers
154 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 ...
1
vote
2answers
829 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 . ...
0
votes
1answer
219 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 ...
2
votes
3answers
834 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. ...
7
votes
2answers
2k 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
0
votes
2answers
2k 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 ...
1
vote
1answer
635 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 ...
3
votes
4answers
269 views

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

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 ...
2
votes
1answer
914 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
3answers
836 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 ...
5
votes
1answer
2k 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 ...
0
votes
1answer
564 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 ...
1
vote
2answers
973 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, ...
0
votes
3answers
554 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
362 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 ...
15
votes
1answer
2k 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 ...
0
votes
1answer
139 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
509 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 ...

1 2