Re: Trouble changing from sqlite3 to postgres

2015-02-19 Thread Collin Anderson
Hi, It seems strange that it would be trying to convert a "date" column to an integer. Since you're creating a new database from scratch, you could try deleting your migrations and generating them from scratch to see if that helps. Otherwise, what does your "app_1.0003_auto_20141126_2333" file

Re: Trouble changing from sqlite3 to postgres

2015-02-17 Thread tony . guil35
The error occurs during migration. The following shows the complete traceback. Thanks. % python manage migrate WFK: BASE_DIR= /home/bill/django/wfkprojs/proj1 WFK: STATIC_PATH= /home/bill/django/wfkprojs/proj1/app_1/static/ WFK: MEDIA_ROOT= /home/bill/django/wfk

Re: Trouble changing from sqlite3 to postgres

2015-02-17 Thread Joel Burton
The error is probably in code you wrote that uses the date field. Can you post the full traceback? That will let us see where the caller was that created the problem. On Tuesday, February 17, 2015 at 3:13:30 PM UTC-5, tony@gmail.com wrote: > > I have written a simple Django app (my first) th