3
0
Fork 0

feat: add table/model for app upgrades

This commit is contained in:
Lance Edgar 2024-08-24 10:20:05 -05:00
parent e855a84c37
commit 110ff69d6d
14 changed files with 275 additions and 2 deletions

View file

@ -0,0 +1,6 @@
``wuttjamaican.db.model.upgrades``
==================================
.. automodule:: wuttjamaican.db.model.upgrades
:members:

View file

@ -0,0 +1,6 @@
``wuttjamaican.enum``
=====================
.. automodule:: wuttjamaican.enum
:members:

View file

@ -15,7 +15,9 @@
db.model
db.model.auth
db.model.base
db.model.upgrades
db.sess
enum
exc
people
testing

View file

@ -22,6 +22,7 @@ extensions = [
'sphinxcontrib.programoutput',
'sphinx.ext.viewcode',
'sphinx.ext.todo',
'enum_tools.autoenum',
]
templates_path = ['_templates']

View file

@ -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;