diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/howto/writing-migrations.txt | 2 | ||||
| -rw-r--r-- | docs/topics/migrations.txt | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/docs/howto/writing-migrations.txt b/docs/howto/writing-migrations.txt index f1dfc92d1f..5527302fa8 100644 --- a/docs/howto/writing-migrations.txt +++ b/docs/howto/writing-migrations.txt @@ -103,6 +103,7 @@ the respective field according to your needs. :filename: 0006_remove_uuid_null.py # -*- coding: utf-8 -*- + # Generated by Django A.B on YYYY-MM-DD HH:MM from __future__ import unicode_literals from django.db import migrations, models @@ -156,6 +157,7 @@ the respective field according to your needs. :filename: 0005_populate_uuid_values.py # -*- coding: utf-8 -*- + # Generated by Django A.B on YYYY-MM-DD HH:MM from __future__ import unicode_literals from django.db import migrations, models diff --git a/docs/topics/migrations.txt b/docs/topics/migrations.txt index c656e56db5..d7aa7051d1 100644 --- a/docs/topics/migrations.txt +++ b/docs/topics/migrations.txt @@ -449,6 +449,7 @@ the file in the right place, suggest a name, and add dependencies for you):: Then, open up the file; it should look something like this:: # -*- coding: utf-8 -*- + # Generated by Django A.B on YYYY-MM-DD HH:MM from django.db import models, migrations class Migration(migrations.Migration): |
