9
votes
7answers
909 views
Django workflow when modifying models frequently?
Hi gents, 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 "sync …
3
votes
5answers
128 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 install …
0
votes
3answers
276 views
Django/Python EnvironmentError?
Getting this error when I try to syncdb using python manage.py syncdb
File "/usr/local/lib/python2.6/dist-packages/django/conf/__init__.py", line 83, in __init__
raise Environment …
3
votes
4answers
604 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 an …
1
vote
1answer
63 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 tabl …
1
vote
2answers
104 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 …
1
vote
2answers
101 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 …
0
votes
2answers
354 views
Django/Python Beginner: Error when executing python manage.py syncdb - psycopg2 not found
Hello,
I have Pythong2.6, psycopg2 and pgAdmin3 installed using Macports. My settings.py is:
DATABASE_ENGINE = 'postgresql_psycopg2' # 'postgresql_psycopg2', 'postgresq …
0
votes
2answers
102 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
…
2
votes
2answers
147 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, t …
0
votes
1answer
231 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 …
0
votes
2answers
168 views
Keep code from running during syncdb
hello again!
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 fr …
