diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-06-22 18:22:21 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-06-22 18:22:21 -0700 |
| commit | c8f3bf5a70ff74a509a7ec4721797e407a31d507 (patch) | |
| tree | 76ab039d78a3a96b352421534f9ba90dc7123fdb /docs/tutorials | |
| parent | 8b43919a98177d4591736c3125b79ab0eeed290f (diff) | |
| download | pyramid-c8f3bf5a70ff74a509a7ec4721797e407a31d507.tar.gz pyramid-c8f3bf5a70ff74a509a7ec4721797e407a31d507.tar.bz2 pyramid-c8f3bf5a70ff74a509a7ec4721797e407a31d507.zip | |
Add mention of migrations and Alembic in design and glossary.
Diffstat (limited to 'docs/tutorials')
| -rw-r--r-- | docs/tutorials/wiki2/design.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/wiki2/design.rst b/docs/tutorials/wiki2/design.rst index 515aff276..e3b35d24a 100644 --- a/docs/tutorials/wiki2/design.rst +++ b/docs/tutorials/wiki2/design.rst @@ -19,7 +19,7 @@ Models ====== We'll be using an SQLite database to hold our wiki data, and we'll be using -:term:`SQLAlchemy` to access the data in this database. +:term:`SQLAlchemy` to access the data in this database. We will also use :term:`Alembic` for database migrations, including initialization of the SQLite database. Within the database, we will define two tables: |
