Metadata-Version: 2.1
Name: django-comment-migrate
Version: 0.0.9
Summary: An app that provides Django model comment migration
Home-page: https://github.com/starryrbs/django-comment-migrate.git
Author: starryrbs
Author-email: 1322096624@qq.com
License: MIT
Keywords: django-comment-migrate
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Requires-Dist: django (>=2.2)

Django Comment Migrate
======================

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

An app that provides Django model comment migration

English \| `简体中文 <./README-zh_CN.rst>`__

Feature
-------

-  Automatic migration model help\_text to comment
-  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

   .. code:: python

       INSTALLED_APPS =[
           "django_comment_migrate",
           ...
       ]

3. add model

   project/app/model.py

   .. code:: python

       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'

4. execute database migrate::

    python manage.py makemigrations
    python manage.py migrate

Now check the database table, comments have been generated.

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
-  Postgres

.. |Build| image:: https://travis-ci.org/starryrbs/django-comment-migrate.svg?branch=master
.. |https://pypi.org/project/django-comment-migrate/| image:: https://img.shields.io/pypi/v/django-comment-migrate


