Changeset 303 for elixir/trunk/elixir/__init__.py
- Timestamp:
- 02/07/08 15:57:55 (5 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/elixir/__init__.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/elixir/__init__.py
r296 r303 32 32 has_and_belongs_to_many, \ 33 33 ManyToOne, OneToOne, OneToMany, ManyToMany 34 from elixir.properties import has_property, GenericProperty, ColumnProperty 34 from elixir.properties import has_property, GenericProperty, ColumnProperty, \ 35 Synonym 35 36 from elixir.statements import Statement 36 37 … … 39 40 40 41 __all__ = ['Entity', 'EntityMeta', 41 'Field', 'has_field', 'with_fields', 42 'has_property', 'GenericProperty', 'ColumnProperty', 42 'Field', 'has_field', 'with_fields', 43 'has_property', 'GenericProperty', 'ColumnProperty', 'Synonym', 43 44 'belongs_to', 'has_one', 'has_many', 'has_and_belongs_to_many', 44 45 'ManyToOne', 'OneToOne', 'OneToMany', 'ManyToMany', … … 46 47 'options_defaults', 'metadata', 'objectstore', 'session', 47 48 'create_all', 'drop_all', 48 'setup_all', 'cleanup_all', 49 'setup_all', 'cleanup_all', 49 50 'setup_entities', 'cleanup_entities'] + \ 50 51 sqlalchemy.types.__all__
