django-mymigrate is a wrapper on south that allows to quickly migrate all project apps with one command.
Project description
=====
django-mymigrate
=====
django-mymigrate is a wrapper on south that allows to quickly migrate all project apps with one command.
- version 0.2
- https://github.com/hellpain/django-mymigrate
Installation
-----------
pip install south
pip install django-mymigrate
In your settings.py define PROJECT_ROOT as a folder containing all your apps.
from os.path import join, normpath, dirname
PROJECT_ROOT = join(normpath(dirname(__file__)), '..')
in django 1.6 better use BASE_DIR which django creates
Commands
-----------
- ./manage.py mymigrate -i
Creates initial migrations for all apps in project directory.
It is equivalent to run "./manage.py schemamigration app_name --initial" through all apps in project directory.
- ./manage.py mymigrate -a
Create auto migrations for all apps in project directory.
It is equivalent to run "./manage.py schemamigration app_name --auto" through all apps in project directory.
- ./manage.py mymigrate -d
Deletes all migrations on disk and database.
Typical use
-----------
1) ./manage.py syncdb --all
Create all tables
2) ./manage.py mymigrate -i
Creates initial migrations for all apps in project directory.
3) ./manage.py migrate --fake
Apply fake migrations.
4) Change something in models...
5) ./manage.py mymigrate -a
Create auto migrations for all apps in project directory.
6) ./manage.py migrate
Apply migrations.
7) ./manage.py mymigrate -d
(optional) Delete all migrations on disk and database.
Notes:
-----------
When you created initial migrations using "./manage.py mymigrate -i" and then created new app, you should manually run
"./manage.py schemamigration new_app_name --initial" & "./manage.py migrate new_app_name" to create and apply initial migrations.
Only after that you can use "./manage.py mymigrate -a" in future development.
Release Notes:
-----------
- 0.2 Better support for django 1.6
django-mymigrate
=====
django-mymigrate is a wrapper on south that allows to quickly migrate all project apps with one command.
- version 0.2
- https://github.com/hellpain/django-mymigrate
Installation
-----------
pip install south
pip install django-mymigrate
In your settings.py define PROJECT_ROOT as a folder containing all your apps.
from os.path import join, normpath, dirname
PROJECT_ROOT = join(normpath(dirname(__file__)), '..')
in django 1.6 better use BASE_DIR which django creates
Commands
-----------
- ./manage.py mymigrate -i
Creates initial migrations for all apps in project directory.
It is equivalent to run "./manage.py schemamigration app_name --initial" through all apps in project directory.
- ./manage.py mymigrate -a
Create auto migrations for all apps in project directory.
It is equivalent to run "./manage.py schemamigration app_name --auto" through all apps in project directory.
- ./manage.py mymigrate -d
Deletes all migrations on disk and database.
Typical use
-----------
1) ./manage.py syncdb --all
Create all tables
2) ./manage.py mymigrate -i
Creates initial migrations for all apps in project directory.
3) ./manage.py migrate --fake
Apply fake migrations.
4) Change something in models...
5) ./manage.py mymigrate -a
Create auto migrations for all apps in project directory.
6) ./manage.py migrate
Apply migrations.
7) ./manage.py mymigrate -d
(optional) Delete all migrations on disk and database.
Notes:
-----------
When you created initial migrations using "./manage.py mymigrate -i" and then created new app, you should manually run
"./manage.py schemamigration new_app_name --initial" & "./manage.py migrate new_app_name" to create and apply initial migrations.
Only after that you can use "./manage.py mymigrate -a" in future development.
Release Notes:
-----------
- 0.2 Better support for django 1.6
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-mymigrate-0.2.0.tar.gz.
File metadata
- Download URL: django-mymigrate-0.2.0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0335a3c40e83cb3959c1f8df7fc685af5d6b8d04aafe4635fda7d8c9b9959a94
|
|
| MD5 |
3fdaa8442448295596f8c80d3d5f5c28
|
|
| BLAKE2b-256 |
69b4267aeab64e6ed22362c5547285331e68e32a5b9114e6fc1396cc57c7103f
|