summaryrefslogtreecommitdiff
path: root/docs/tutorials
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-07-05 21:44:41 +0000
committerChris McDonough <chrism@agendaless.com>2009-07-05 21:44:41 +0000
commit4b23131f4c50e0bc4dd22ce78bd662fbaa1e3c14 (patch)
tree6c9f5c36fb454df63576a375464854653f6772d2 /docs/tutorials
parentb0b663e753b89c66c70f01fbad3c585d980cb6bf (diff)
downloadpyramid-4b23131f4c50e0bc4dd22ce78bd662fbaa1e3c14.tar.gz
pyramid-4b23131f4c50e0bc4dd22ce78bd662fbaa1e3c14.tar.bz2
pyramid-4b23131f4c50e0bc4dd22ce78bd662fbaa1e3c14.zip
Deleting the database.
Diffstat (limited to 'docs/tutorials')
-rw-r--r--docs/tutorials/bfgwiki/definingmodels.rst17
1 files changed, 9 insertions, 8 deletions
diff --git a/docs/tutorials/bfgwiki/definingmodels.rst b/docs/tutorials/bfgwiki/definingmodels.rst
index 699763ae4..1b6462a7b 100644
--- a/docs/tutorials/bfgwiki/definingmodels.rst
+++ b/docs/tutorials/bfgwiki/definingmodels.rst
@@ -14,18 +14,19 @@ class.
Deleting the Database
---------------------
-We're going to remove a Python model class. Since this class is
-referred to within our persistent storage (within ``Data.fs``), we'll
-have strange things happen the next time we want to visit the
-application in a browser. Remove the ``Data.fs`` from the
-``tutorial`` directory before proceeding any further. It's always
-fine to do this as long as you don't care about the content of the
-database; the database itself will be recreated as necessary.
+We're going to remove the ``MyModel`` Python model class from our
+``models.py`` file. Since this class is referred to within our
+persistent storage (within ``Data.fs``), we'll have strange things
+happen the next time we want to visit the application in a browser.
+Remove the ``Data.fs`` from the ``tutorial`` directory before
+proceeding any further. It's always fine to do this as long as you
+don't care about the content of the database; the database itself will
+be recreated as necessary.
Adding Model Classes
--------------------
-The first thing we want to do is remove the ``MyModel`` class from the
+The next thing we want to do is remove the ``MyModel`` class from the
generated ``models.py`` file. The ``MyModel`` class is only a sample
and we're not going to use it.