Skip to content

Commit

Permalink
v0.12.3
Browse files Browse the repository at this point in the history
* Added description attribute to Field class. (#124)
* Added the ability to leverage field description from (#124) to generate table column comments and ability to add table level comments (#149)
  • Loading branch information
grigi committed Jul 5, 2019
1 parent 0fb4852 commit b2ec021
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/models.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ The ``Meta`` class

Set this to configure a manual table name, instead of a generated one

.. attribute:: table_description
:annotation: = ""
.. attribute:: table_description
:annotation: = ""

Set this to generate a comment message for the table being created for the current model
Set this to generate a comment message for the table being created for the current model

.. attribute:: unique_together
:annotation: = None
Expand Down
2 changes: 1 addition & 1 deletion tortoise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,4 +413,4 @@ async def do_stuff():
loop.run_until_complete(Tortoise.close_connections())


__version__ = "0.12.2"
__version__ = "0.12.3"

0 comments on commit b2ec021

Please sign in to comment.