Using Django 1.7 migrations.
I accidentally dropped a table in my database. I assumed that by running migration again this would recreate the table but no, Django st
Just ran into this while building a little app learning django. I wanted to create a non-null column for an existing table. There were three steps:
For an actual application you'd need to supply a default value as others have pointed out.