I use Django1.7 with Mezzanine. I create simple profile (according to Mezzanine documentation) stored in separate app \"profiles\":
class RoadmapProfile(mode
The same problem happened to me using PostgreSQL I cleared all migrations in migrations folder and in migrations cache folder, and then in my PGADMIN ran:
delete from django_migrations where app='your_app'
@phanhuy152 has the best answer. Just to add my two cents:
His solution is:
migrations
foldermakemigrations
to restore the initial state of the migration filesmakemigrations
againmigrate
to apply updates to table.But in my case, I have several models in the models.py
file and at the last step, Django complains about Table xxx already exists
, because the initial migrations files intends to create the xxx table again, when we just don't (and don't want to)drop other tables.
In this case, in order to preserve the data, we must tell Django to leave them alone in migrate
. We just do: (assume that class A is the one we change, and class B, C remain same):
models.py
:
from django.db import models
class A(models.Models):
...
class B(models.Models):
class Meta:
managed = False # tell Django to leave this class alone
...
class C(models.Models):
class Meta:
managed = False # tell Django to leave this class alone
Add these lines after we construct the initial migrations.
So, the process now is:
managed = False
to other classesmakemigrations
to apply Meta
changes. You will see something like:output:
Migrations for 'backEnd':
backEnd/migrations/0002_auto_20180412_1654.py
- Change Meta options on toid
- Change Meta options on tprocessasinc
- Change Meta options on tservers
- Change Meta options on tsnmpserver
migrate
to apply them in DBmigrate
again.Meta
class to let Django manage other class again. makemigrations
, migrate
again.Now you have all the structure and data of your models, without losing the part formerly stored in DB.
The problem here are fake migrations somewhere. Basically in your database the table created from your model doesn't exist, tho somewhere in time that table existed before, due an old update o whatever it may be. The problem is that django already made those migrations so the tables MUST exist for hence overlooking migrations but getting error "table_doesnt_exist" in Admin.
Solution:
1.- Make sure to save any data from that model.
2.- Access your database and run this query.
SELECT * FROM django_migrations;
3.- Get the id from the list generated from the query. These are migrations that Django has migrated so far, hence TABLES MUST EXIST. In your case I'd look for a row named roadmapprofile, due this is the name of your model.
4.- Now lets delete this row from this table using the ids,
DELETE FROM django_migrations where django_migrations.id in (value_id1, value_id2 ... value_idN);
Replace value_id1 and value_id2 with respective ids. It could be only one or many so don't worry if you don't see more than 1 id, what this means is that only one model exists under the current app.
5.- Migrate app to zero
manage.py migrate <app_name> zero
6.- Delete all migrations files within the app migrations folder
7.- Create Migrations
manage.py makemigrations
8.- Once you delete these registries and run manage.py migrate; Django will be forced to run migrations for these models due "MIGRATIONS WON'T EXIST" for these models.
manage.py migrate
That's it. You shouldn't have any problems following these instructions. By the way, you shouldn't loose any data from other models due you're only migrating and updating tables related to these specific models.
I had this same problem. Make sure the app's migrations folder is created (YOURAPPNAME/ migrations). Delete the folder and enter the commands:
python manage.py migrate --fake
python manage.py makemigrations <app_name>
python manage.py migrate --fake-initial
I inserted this lines in each class in models.py:
class Meta:
app_label = '<app_name>'
This solved my problem.
python manage.py migrate --fake APPNAME zero
This will make your migration to fake. Now you can run the migrate script
python manage.py migrate APPNAME
Tables will be created and you solved your problem.. Cheers!!!
I am a Django newbie and I was going through the same problem. These answers didn't work for me. I wanted to share how did I fix the problem, probably it would save someone lots of time.
I make changes to a model and I want to apply these changes to the DB.
Run on shell:
python manage.py makemigrations app-name
python manage.py migrate app-name
No changes are made in the DB
But when I check the db schema, it remains to be the old one
manage.py migrate app-name
, Django checks in django_migrations table in the db to see which migrations have been already applied and will skip those migrations.Delete the record with app="my-app-name" from that table (delete from django_migrations where app = "app-name"
). Clear my migration folder and run python manage.py makemigration my-app-name
, then python manage.py migrate my-app-name
. This was suggested by the most voted answer. But that doesn't work either.
Because there was an existing table, and what I am creating was a "initial migration", so Django decides that the initial migration has already been applied (Because it sees that the table already exists). The problem is that the existing table has a different schema.
Drop the existing table (with the old schema), make initial migrations, and applied again. This will work (it worked for me) since we have an "initial migration" and there was no table with the same name in our db. (Tip: I used python manage.py migrate my-app-name zero
to quickly drop the tables in the db)
Problem? You might want to keep the data in the existing table. You don't want to drop them and lose all of the data.
Delete all the migrations in your app and in django_migrations all the fields with django_migrations.app = your-app-name
How to do this depends on which DB you are using
Example for MySQL: delete from django_migrations where app = "your-app-name";
Create an initial migration with the same schema as the existing table, with these steps:
Modify your models.py to match with the current table in your database
Delete all files in "migrations"
Run python manage.py makemigrations your-app-name
If you already have an existing database then run python manage.py migrate --fake-initial
and then follow the step below.
Modify your models.py to match the new schema (e.i. the schema that you need now)
Make new migration by running python manage.py makemigrations your-app-name
Run python manage.py migrate your-app-name
This works for me. And I managed to keep the existing data.
The reason I went through all of those troubles was that I deleted the files in some-app/migrations/ (the migrations files). And hence, those migration files and my database aren't consistent with one another. So I would try not modifying those migration files unless I really know what I am doing.