feat: add table/model for app upgrades
This commit is contained in:
parent
e855a84c37
commit
110ff69d6d
14 changed files with 275 additions and 2 deletions
6
docs/api/wuttjamaican/db.model.upgrades.rst
Normal file
6
docs/api/wuttjamaican/db.model.upgrades.rst
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
``wuttjamaican.db.model.upgrades``
|
||||
==================================
|
||||
|
||||
.. automodule:: wuttjamaican.db.model.upgrades
|
||||
:members:
|
6
docs/api/wuttjamaican/enum.rst
Normal file
6
docs/api/wuttjamaican/enum.rst
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
``wuttjamaican.enum``
|
||||
=====================
|
||||
|
||||
.. automodule:: wuttjamaican.enum
|
||||
:members:
|
|
@ -15,7 +15,9 @@
|
|||
db.model
|
||||
db.model.auth
|
||||
db.model.base
|
||||
db.model.upgrades
|
||||
db.sess
|
||||
enum
|
||||
exc
|
||||
people
|
||||
testing
|
||||
|
|
|
@ -22,6 +22,7 @@ extensions = [
|
|||
'sphinxcontrib.programoutput',
|
||||
'sphinx.ext.viewcode',
|
||||
'sphinx.ext.todo',
|
||||
'enum_tools.autoenum',
|
||||
]
|
||||
|
||||
templates_path = ['_templates']
|
||||
|
|
|
@ -25,6 +25,11 @@ Glossary
|
|||
Usually this is named ``app`` and is located at the root of the
|
||||
virtual environment.
|
||||
|
||||
app enum
|
||||
Python module whose namespace contains all the "enum" values
|
||||
used by the :term:`app`. Available on the :term:`app handler`
|
||||
as :attr:`~wuttjamaican.app.AppHandler.enum`.
|
||||
|
||||
app handler
|
||||
Python object representing the core :term:`handler` for the
|
||||
:term:`app`. There is normally just one "global" app handler;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue