Alex Rothberg
Alex Rothberg

Reputation: 10983

Migrations in stand alone Django app

How do I makemigrations on a stand alone Django app (ie one that is not part if any project).

For example after following: https://docs.djangoproject.com/en/1.8/intro/reusable-apps/

Upvotes: 5

Views: 890

Answers (2)

C. Trudeau
C. Trudeau

Reputation: 111

You can do it similar to how you do testing scripts for apps:

#!/usr/bin/env python

import sys
import django

from django.conf import settings
from django.core.management import call_command

settings.configure(DEBUG=True,
    INSTALLED_APPS=(
        'django.contrib.contenttypes',
        'your_app',
    ),
)

django.setup()
call_command('makemigrations', 'your_app')

Upvotes: 11

suselrd
suselrd

Reputation: 794

What I do is to create a mock project, containing only that app, then the process is as usual:

manage.py makemigrations myapp

Upvotes: 0

Related Questions