Index: elixir/trunk/elixir/__init__.py
===================================================================
--- elixir/trunk/elixir/__init__.py (revision 296)
+++ elixir/trunk/elixir/__init__.py (revision 303)
@@ -32,5 +32,6 @@
                                  has_and_belongs_to_many, \
                                  ManyToOne, OneToOne, OneToMany, ManyToMany
-from elixir.properties import has_property, GenericProperty, ColumnProperty
+from elixir.properties import has_property, GenericProperty, ColumnProperty, \
+                              Synonym
 from elixir.statements import Statement
 
@@ -39,6 +40,6 @@
 
 __all__ = ['Entity', 'EntityMeta',
-           'Field', 'has_field', 'with_fields',
-           'has_property', 'GenericProperty', 'ColumnProperty',
+           'Field', 'has_field', 'with_fields', 
+           'has_property', 'GenericProperty', 'ColumnProperty', 'Synonym',
            'belongs_to', 'has_one', 'has_many', 'has_and_belongs_to_many',
            'ManyToOne', 'OneToOne', 'OneToMany', 'ManyToMany',
@@ -46,5 +47,5 @@
            'options_defaults', 'metadata', 'objectstore', 'session',
            'create_all', 'drop_all',
-           'setup_all', 'cleanup_all', 
+           'setup_all', 'cleanup_all',
            'setup_entities', 'cleanup_entities'] + \
            sqlalchemy.types.__all__
