I am trying to get started with South.

I had an existing database.

I added South (syncdb, schemamigration --initial).

I updated models.py to add a field.

I ran ./manage.py schemamigration myapp --auto

It seemed to find the field and said I could apply this with ./manage.py migrate myapp

Doing that gave the error:

django.db.utils.DatabaseError: table "myapp_tablename" already exists

tablename is the first table listed in models.py.

I am running Django 1.2, South 0.7

link|improve this question
feedback

4 Answers

up vote 53 down vote accepted

since you already have the tables created in the database, you just need to run the initial migration as fake

./manage.py migrate myapp --fake

make sure that the schema of models is same as schema of tables in database.

link|improve this answer
1  
Got it, thanks. It's actually migrate and not schemamigration, but your answer got me in the right direction. – Steve Jun 22 '10 at 7:17
my mistake just copied the command from OP, correct command ./manage.py migrate myapp --fake – Ashok Jun 22 '10 at 8:04
I love finding answers so quickly - many thanks @Ashok! – Dave Martorana Mar 28 '11 at 17:18
This solution didn't solve the problem in my case. I didn't modify the database and crashed some views because the field wasn't created on the table. I had to comment the new property, migrate with fake again to reestablish everything, and the second time I tried it did worked which I still don't understand... :) – Xavi Colomer Mar 9 at 11:10
feedback

Although the table "myapp_tablename" already exists error stop raising after I did ./manage.py migrate myapp --fake, the DatabaseError shows no such column: myapp_mymodel.added_field.

any hints?

link|improve this answer
Was added_field in your models.py when you did your initial migration? If so, South did not actually update your database. It thinks added_field is already in the database when it isn't. When you run --init and then --fake, you must make sure your models.py reflects the database as it is starting out. This is the reference point South will start out with. Then you can add fields and run migrations. – Steve Jun 30 '10 at 9:37
actually the added_field is not in models.py when running --init. and I didn't get any results after searching south's documents. I will try to use some simple model to test it fisrt. thanks anyway. – Mark Renton Jul 2 '10 at 0:28
Yep, am experiencing the same problems, any head way on this... – gath Jul 30 '10 at 8:44
feedback

Although the table "myapp_tablename" already exists error stop raising after I did ./manage.py migrate myapp --fake, the DatabaseError shows no such column: myapp_mymodel.added_field.

Got exactly the same problem!

1.Firstly check the migration number which is causing this. Lets assume it is: 0010.

2.You need to:

./manage.py migrate myapp --add-field MyModel.added_field
./manage.py migrate myapp

if there is more than one field missing you have to repeat it for each field.

3.Now you land with a bunch of new migrations so remove their files from myapp/migrations (0011 and further if you needed to add multiple fields).

4.Run this:

./manage.py migrate myapp 0010

Now try ./manage.py migrate myapp

If it doesn't fail you're ready. Just doublecheck if any field's aren't missing.

EDIT:

This problem can also occur when you have a production database for which you install South and the first, initial migration created in other enviorment duplicates what you already have in your db. The solution is much easier here:

  1. Fake the first migration:

    ./manage migrate myapp 0001 --fake

  2. Roll with the rest of migrations:

    ./manage migrate myapp

link|improve this answer
feedback

When I ran into this error, it had a different cause.

In my case South had somehow left in my DB a temporary empty table, which is used in _remake_table(). Probably I had aborted a migration in a way a shouldn't have. In any case, each subsequent new migration, when it called _remake_table(), was throwing the error sqlite3.pypysqlite2.dbapi2.OperationalError: table "_south_new_myapp_mymodel" already exists, because it did already exist and wasn't supposed to be there.

The _south_new bit looked odd to me, so I browsed my DB, saw the table _south_new_myapp_mymodel, scratched my head, looked at South's source, decided it was junk, dropped the table, and all was well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.