An app that provides Django model comment migration
Project description
An app that provides Django model comment migration
English | 简体中文
Feature
Automatic migration model help_text to comment [Support customization]
Automatically migrate the verbose_name of the model to the table comment [Support customization]
Provide a command to migrate the comment of the specified app
Examples
download python package:
pip install django-comment-migrate
add django_comment_migrate app
project/project/settings.py
INSTALLED_APPS =[ "django_comment_migrate", ... ]
add model
project/app/model.py
from django.db import models class CommentModel(models.Model): no_comment = models.TextField() aaa = models.IntegerField(default=0, help_text="test default") help_text = models.CharField(max_length=40, help_text="this is help text") class Meta: app_label = 'tests' db_table = 'comment_model' verbose_name = 'It is Comment Table'
add app
project/app/settings.py
DCM_COMMENT_APP=["app"]
execute database migrate:
python manage.py makemigrations python manage.py migrate
Now check the database table, comments have been generated.
Custom config
In settings.py:
DCM_COMMENT_KEY='verbose_name' DCM_TABLE_COMMENT_KEY='verbose_name' DCM_BACKEND={ "new-engine": "engine.path" } DCM_COMMENT_APP=["app"]
Command
Provides a comment migration command, which allows the database to regenerate comments:
python manage.py migratecomment [app_label]
The command needs to be executed after all migrations are executed
Running the tests
Install Tox:
pip install tox
Run:
tox
Supported Database
MySQL
PostgreSQL
Microsoft SQL Server
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
Built Distribution
Hashes for django-comment-migrate-0.1.7.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13e9d613e9a1f4af7fb212052bd4e6f79c288503d0be38061c2871f8a5c501aa |
|
MD5 | 821e275149ec5db1d2f13b4e369a917c |
|
BLAKE2b-256 | 5d6bb54fbe0ab7755c51ef4f0aaac66ffba978258f411f68850d0af8c99ff4d8 |
Hashes for django_comment_migrate-0.1.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6545b447f603ac8ff367f73a569af9de3ba53ae81dc344aa36fcb4761c22d161 |
|
MD5 | fb957c279390aa3478fd4f48c4fdf224 |
|
BLAKE2b-256 | 583c671d52db3d1739eacd0892786c205c0d6eb5fe055523d434ff0c6cfa1650 |