Changeset 484 for elixir/trunk/elixir/fields.py
- Timestamp:
- 10/01/09 16:12:10 (2 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/elixir/fields.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/elixir/fields.py
r465 r484 29 29 The Field class takes one mandatory argument, which is its type. Please refer 30 30 to SQLAlchemy documentation for a list of `types supported by SQLAlchemy 31 <http://www.sqlalchemy.org/docs/0 4/types.html>`_.31 <http://www.sqlalchemy.org/docs/05/reference/sqlalchemy/types.html>`_. 32 32 33 33 Following that first mandatory argument, fields can take any number of … … 36 36 below **are passed on to the SQLAlchemy ``Column`` object**. Please refer to 37 37 the `SQLAlchemy Column object's documentation 38 <http://www.sqlalchemy.org/docs/0 4/sqlalchemy_schema.html39 # docstrings_sqlalchemy.schema_Column>`_ for more details about other38 <http://www.sqlalchemy.org/docs/05/reference/sqlalchemy/schema.html 39 #sqlalchemy.schema.Column>`_ for more details about other 40 40 supported keyword arguments. 41 41
