Extra migration classes for django
Project description
pip install django_extra_migrations
# Resave
*Resave all records with calling save and signals events*
Create empty migration - ```./manage.py makemigrations %APP_NAME% --empty```
Open migration file ./%APP_NAME%/migrations/%MIGRATION_NAME%.py
###Import
from django_extra_migrations.migrations import Resave
###Operation
Resave("%APP_NAME%.%MODEL_NAME%"),
###Example:
from __future__ import unicode_literals
from django.db import models, migrations
from django_extra_migrations.migrations import Resave, GrantPermissions
class Migration(migrations.Migration):
dependencies = [
('tree', '0078_auto_20151014_1500'),
]
operations = [
Resave("tree.Resource"),
]
---
#GrantPermissions
*Grant permissions to groups*
Create empty migration - ```./manage.py makemigrations %APP_NAME% --empty```
Open migration file ./%APP_NAME%/migrations/%MIGRATION_NAME%.py
###Import
from django_extra_migrations.migrations import GrantPermissions
###Operation
GrantPermissions(["%GROUP_NAME%"], (
("%APP_NAME%.%MODEL_NAME%", True), # IF true - grant ALL perms for this content type
("%APP_NAME%.%MODEL_NAME%", ["add_%LOWER_MODEL_NAME%"]),
("%APP_NAME%.%MODEL_NAME%", ["change_%LOWER_MODEL_NAME%"]),
("%APP_NAME%.%MODEL_NAME%", ["delete_%LOWER_MODEL_NAME%"]),
)),
###Example:
from __future__ import unicode_literals
from django.db import models, migrations
from django_extra_migrations.migrations import GrantPermissions
class Migration(migrations.Migration):
dependencies = [
('tree', '0078_auto_20151014_1500'),
]
operations = [
GrantPermissions(["Admins"], (
("tree.Resource", True),
("tree.ResourceFile", ["add_resourcefile"]),
)),
]
# Resave
*Resave all records with calling save and signals events*
Create empty migration - ```./manage.py makemigrations %APP_NAME% --empty```
Open migration file ./%APP_NAME%/migrations/%MIGRATION_NAME%.py
###Import
from django_extra_migrations.migrations import Resave
###Operation
Resave("%APP_NAME%.%MODEL_NAME%"),
###Example:
from __future__ import unicode_literals
from django.db import models, migrations
from django_extra_migrations.migrations import Resave, GrantPermissions
class Migration(migrations.Migration):
dependencies = [
('tree', '0078_auto_20151014_1500'),
]
operations = [
Resave("tree.Resource"),
]
---
#GrantPermissions
*Grant permissions to groups*
Create empty migration - ```./manage.py makemigrations %APP_NAME% --empty```
Open migration file ./%APP_NAME%/migrations/%MIGRATION_NAME%.py
###Import
from django_extra_migrations.migrations import GrantPermissions
###Operation
GrantPermissions(["%GROUP_NAME%"], (
("%APP_NAME%.%MODEL_NAME%", True), # IF true - grant ALL perms for this content type
("%APP_NAME%.%MODEL_NAME%", ["add_%LOWER_MODEL_NAME%"]),
("%APP_NAME%.%MODEL_NAME%", ["change_%LOWER_MODEL_NAME%"]),
("%APP_NAME%.%MODEL_NAME%", ["delete_%LOWER_MODEL_NAME%"]),
)),
###Example:
from __future__ import unicode_literals
from django.db import models, migrations
from django_extra_migrations.migrations import GrantPermissions
class Migration(migrations.Migration):
dependencies = [
('tree', '0078_auto_20151014_1500'),
]
operations = [
GrantPermissions(["Admins"], (
("tree.Resource", True),
("tree.ResourceFile", ["add_resourcefile"]),
)),
]
Project details
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_extra_migrations-0.0.7.tar.gz
.
File metadata
- Download URL: django_extra_migrations-0.0.7.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
2741aa6e96a9aaee035b1ff7757ba1049009eea565fd125a671e99f69f08152c
|
|
MD5 |
d1c503cdd28ab4e5393b6d4121a4801b
|
|
BLAKE2b-256 |
158e8246898c17fc080d01d8897febda4df29ead4cc51a772eec9ba6d55492aa
|