Skip to main content

An app that provides Django model comment migration

Project description

Build https://pypi.org/project/django-comment-migrate/

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

  1. download python package:

    pip install django-comment-migrate
  2. add django_comment_migrate app

    project/project/settings.py

    INSTALLED_APPS =[
        "django_comment_migrate",
        ...
    ]
  3. 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'
  4. add app

    project/app/settings.py

    DCM_COMMENT_APP=["app"]
  5. 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

  1. Install Tox:

    pip install tox
  2. Run:

    tox

Supported Database

  • MySQL

  • PostgreSQL

  • Microsoft SQL Server

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

django-comment-migrate-0.1.7.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

django_comment_migrate-0.1.7-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file django-comment-migrate-0.1.7.tar.gz.

File metadata

File hashes

Hashes for django-comment-migrate-0.1.7.tar.gz
Algorithm Hash digest
SHA256 13e9d613e9a1f4af7fb212052bd4e6f79c288503d0be38061c2871f8a5c501aa
MD5 821e275149ec5db1d2f13b4e369a917c
BLAKE2b-256 5d6bb54fbe0ab7755c51ef4f0aaac66ffba978258f411f68850d0af8c99ff4d8

See more details on using hashes here.

File details

Details for the file django_comment_migrate-0.1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for django_comment_migrate-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 6545b447f603ac8ff367f73a569af9de3ba53ae81dc344aa36fcb4761c22d161
MD5 fb957c279390aa3478fd4f48c4fdf224
BLAKE2b-256 583c671d52db3d1739eacd0892786c205c0d6eb5fe055523d434ff0c6cfa1650

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page