diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2016-10-07 13:18:58 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2016-10-08 20:42:50 +0300 |
commit | 8c2c464cb8e1b40f90f544295afbf9a83b372eb7 (patch) | |
tree | 09a6c0d0f76f77c8de444fd60e0049a203de7966 /doc/build/orm/tutorial.rst | |
parent | e47063bfe0de1318c12a4f9ef67b9538cad34489 (diff) | |
download | sqlalchemy-8c2c464cb8e1b40f90f544295afbf9a83b372eb7.tar.gz |
spelling: Postgresql -> PostgreSQL
Diffstat (limited to 'doc/build/orm/tutorial.rst')
-rw-r--r-- | doc/build/orm/tutorial.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst index 0a9fc7430..a6eb9d196 100644 --- a/doc/build/orm/tutorial.rst +++ b/doc/build/orm/tutorial.rst @@ -224,7 +224,7 @@ the actual ``CREATE TABLE`` statement: .. topic:: Minimal Table Descriptions vs. Full Descriptions Users familiar with the syntax of CREATE TABLE may notice that the - VARCHAR columns were generated without a length; on SQLite and Postgresql, + VARCHAR columns were generated without a length; on SQLite and PostgreSQL, this is a valid datatype, but on others, it's not allowed. So if running this tutorial on one of those databases, and you wish to use SQLAlchemy to issue CREATE TABLE, a "length" may be provided to the :class:`~sqlalchemy.types.String` type as |