Skip to content

botify-labs/django-better-migrations

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b941115 · Jun 28, 2023

History

77 Commits
Jan 25, 2023
Jan 25, 2023
Jan 25, 2023
Dec 16, 2017
Jan 25, 2023
Apr 29, 2018
May 26, 2023
Jan 25, 2023
Dec 16, 2017
Jan 25, 2023
May 26, 2023
Jun 28, 2023
Dec 16, 2017
Dec 16, 2017
Jan 25, 2023

Repository files navigation

Django Better Migrations

Deployed to PyPI GitHub Repository Continuous Integration MIT License

This project aims at providing improvements to Django's default migration system.

More informations in the documentation, see "docs/" folder.

Example

See below migration, generated automatically via manage.py makemigrations:

# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2017-12-01 00:00
from __future__ import unicode_literals

from django.db import migrations, models


# Generated SQL code (sqlite):
#
# --
# -- Create model Person
# --
# CREATE TABLE "example_app_person" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "name" varchar(100) NOT NULL);
#

# Check results:
# CHECK OK: No ALTER TABLE ADD COLUMN with non-NULL constraint
class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='Person',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('name', models.CharField(max_length=100)),
            ],
        ),
    ]

License

MIT, see LICENSE file.