| Commit message (Expand) | Author | Age | Files | Lines |
| * | restore the deprecated docs | Mike Bayer | 2010-09-04 | 1 | -2/+60 |
| * | - refinements to DDL events, including new execute_if(), got pickling to work | Mike Bayer | 2010-09-03 | 1 | -76/+78 |
| * | doh, forgot about ddl events. need some work with the pickling. | Mike Bayer | 2010-08-31 | 1 | -82/+45 |
| * | get slightly better about deprecations in docstrings, tho this is kind of an ... | Mike Bayer | 2010-08-09 | 1 | -2/+9 |
| * | - Fixed bug whereby replacing composite foreign key | Mike Bayer | 2010-08-04 | 1 | -1/+5 |
| * | - Added full description of parent table/column, | Mike Bayer | 2010-08-03 | 1 | -2/+3 |
| * | - add an example of declarative with hybrid, including why this | Mike Bayer | 2010-08-02 | 1 | -5/+37 |
| * | - Changed the scheme used to generate truncated | Mike Bayer | 2010-07-21 | 1 | -1/+1 |
| * | - more 78 chars | Mike Bayer | 2010-07-10 | 1 | -174/+223 |
| * | - Column.copy() takes along the "unique" attribute | Mike Bayer | 2010-06-15 | 1 | -0/+1 |
| * | disclaimer for the "type=None" semi-feature | Mike Bayer | 2010-05-15 | 1 | -3/+5 |
| * | - Added table.add_is_dependent_on(othertable), allows manual | Mike Bayer | 2010-05-13 | 1 | -0/+15 |
| * | - the _make_proxy() method of ColumnClause and Column now use | Mike Bayer | 2010-05-10 | 1 | -1/+1 |
| * | - Fixed "table" argument on constructor of ForeginKeyConstraint | Mike Bayer | 2010-04-26 | 1 | -1/+1 |
| * | - Table.create() and Table.drop() no longer apply metadata- | Mike Bayer | 2010-04-16 | 1 | -2/+10 |
| * | - The ORM will set the docstring of all generated descriptors | Mike Bayer | 2010-04-02 | 1 | -0/+5 |
| * | - the copy() method of Column now copies over uninitialized | Mike Bayer | 2010-03-11 | 1 | -2/+5 |
| * | -remove proof of concept "cascade constraints" | Mike Bayer | 2010-02-28 | 1 | -4/+0 |
| * | Added the ability to strip the schema when using tometadata by passing schema... | Michael Trier | 2010-02-25 | 1 | -2/+4 |
| * | - "out" parameters require a type that is supported by | Mike Bayer | 2010-02-23 | 1 | -1/+6 |
| * | - added util.portable_instancemethod to provide a quick way to make an instan... | Mike Bayer | 2010-02-22 | 1 | -3/+14 |
| * | - Made sqlalchemy.sql.expressions.Executable part of public | Mike Bayer | 2010-02-12 | 1 | -2/+2 |
| * | - the "connection" argument from engine.transaction() and | Mike Bayer | 2010-01-29 | 1 | -3/+1 |
| * | - the "autocommit" flag on select() and text() as well | Mike Bayer | 2010-01-28 | 1 | -1/+2 |
| * | - reorganized and re-documented Oracle schema tests to assume | Mike Bayer | 2010-01-17 | 1 | -7/+13 |
| * | - added "statement_options()" to Query, to so options can be | Mike Bayer | 2010-01-16 | 1 | -2/+1 |
| * | happy new year | Mike Bayer | 2010-01-07 | 1 | -1/+1 |
| * | merge r6616 of 0.5 branch, allow DefaultGenerators as "default" and "onupdate" | Mike Bayer | 2010-01-07 | 1 | -1/+4 |
| * | - clarify ForeignKey docs, copy operation | Mike Bayer | 2010-01-02 | 1 | -8/+46 |
| * | - The copy() method on Column now supports uninitialized, | Mike Bayer | 2010-01-02 | 1 | -7/+9 |
| * | - Column() supports a keyword argument "sqlite_autoincrement", which | Mike Bayer | 2009-12-18 | 1 | -1/+2 |
| * | - The Boolean type, when used on a backend that doesn't | Mike Bayer | 2009-12-06 | 1 | -72/+84 |
| * | - reworked the DDL generation of ENUM and similar to be more platform agnostic. | Mike Bayer | 2009-12-06 | 1 | -20/+31 |
| * | - subclassed Function off of new FunctionElement generic base | Mike Bayer | 2009-11-10 | 1 | -38/+39 |
| * | - ForeignKey(constraint=some_parent) is now private _constraint | Mike Bayer | 2009-11-09 | 1 | -71/+90 |
| * | - the `__contains__()` method of `MetaData` now accepts | Mike Bayer | 2009-11-01 | 1 | -2/+4 |
| * | - generalized Enum to issue a CHECK constraint + VARCHAR on default platform | Mike Bayer | 2009-10-25 | 1 | -8/+6 |
| * | - Added new ENUM type to the Postgresql dialect, which exists as a schema-level | Mike Bayer | 2009-10-25 | 1 | -0/+5 |
| * | deprecations per [ticket:1498]: | Mike Bayer | 2009-10-15 | 1 | -2/+4 |
| * | - an executemany() now requires that all bound parameter | Mike Bayer | 2009-10-15 | 1 | -0/+4 |
| * | remove instanceof() in favor of memoized flags, part of [ticket:1566] | Mike Bayer | 2009-10-14 | 1 | -1/+21 |
| * | - added "ddl" argument to the "on" callable of DDLElement [ticket:1538] | Mike Bayer | 2009-10-12 | 1 | -50/+55 |
| * | - unit test fixes | Mike Bayer | 2009-10-10 | 1 | -2/+2 |
| * | merge from branches/clauseelement-nonzero | Philip Jenvey | 2009-09-24 | 1 | -5/+5 |
| * | all about DDL events | Mike Bayer | 2009-09-11 | 1 | -1/+4 |
| * | docs | Mike Bayer | 2009-09-10 | 1 | -5/+6 |
| * | - Fixed column.copy() to copy defaults and onupdates. | Mike Bayer | 2009-08-28 | 1 | -0/+4 |
| * | python3k fixes | Mike Bayer | 2009-08-09 | 1 | -1/+10 |
| * | documentation updates | Mike Bayer | 2009-08-07 | 1 | -14/+40 |
| * | merge 0.6 series to trunk. | Mike Bayer | 2009-08-06 | 1 | -588/+622 |