summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/schema.py
Commit message (Expand)AuthorAgeFilesLines
* - the "owner" keyword on Table is now deprecated, and isMike Bayer2008-03-221-14/+12
* - Column._set_parent will complete the key==name contract for instances const...Jason Kirtland2008-03-181-3/+9
* - 'name' is no longer a require constructor argument for Column(). It (and ....Jason Kirtland2008-03-181-1/+23
* - fixed missing import [ticket:989]Jason Kirtland2008-03-121-3/+6
* - constraint constructor docstring fiestaJason Kirtland2008-03-051-13/+176
* - More docs for r4223Jason Kirtland2008-03-041-2/+9
* - Tweaked error messaging for unbound DDL().execute()Jason Kirtland2008-03-041-1/+1
* - Gave DDL() statements the same .bind treatment as the DML ones in r4220Jason Kirtland2008-03-041-5/+33
* - whitespace/docstring/linewrap freakoutJason Kirtland2008-03-041-258/+288
* fixing recent schema.py changes to work with oracle 'owner' attributerel_0_4_3Mike Bayer2008-02-141-3/+9
* - Table columns and constraints can be overridden on aMike Bayer2008-02-101-21/+49
* - Added deferrability support to constraintsJason Kirtland2008-02-081-9/+29
* - Added free-form `DDL` statements, can be executed standalone or tied to the...Jason Kirtland2008-02-051-55/+329
* - ColumnDefault callables can now be any kind of compliant callable, previous...Jason Kirtland2008-02-041-16/+34
* - Friendlier exception messages for unbound, implicit executionJason Kirtland2008-01-311-2/+18
* happy new yearMike Bayer2008-01-011-1/+1
* introductory docstring bonanzaMike Bayer2007-12-181-9/+17
* a little pre-lunch decrufting and cleanupMike Bayer2007-12-181-6/+9
* - cleanup; lambdas removed from properties; properties mirror same-named func...Mike Bayer2007-12-181-107/+61
* - more query testsMike Bayer2007-12-101-9/+12
* - named_with_column becomes an attributeMike Bayer2007-11-251-1/+1
* - decruftify old visitors used by orm, convert to functions thatMike Bayer2007-11-241-2/+1
* cut down a good deal of Join construction overheadMike Bayer2007-11-181-5/+9
* logging fixesMike Bayer2007-11-181-4/+4
* Create a storage field for arbitrary info on tables/columns; ticket #573Paul Johnston2007-11-061-2/+21
* - base_columns on ColumnElement becomes a list; as usual, because columns in ...Mike Bayer2007-11-051-55/+38
* - rewrote and simplified the system used to "target" columns acrossMike Bayer2007-11-051-8/+3
* - Sequences gain a basic dialect-specific kwargs bucket, like Tables.Jason Kirtland2007-10-041-3/+10
* Make the postgres_where attribute to Index private to postgres module by usin...Ants Aasma2007-10-011-1/+3
* - added partial index support for postgresAnts Aasma2007-09-291-1/+4
* - added "schema" argument to Sequence; use this with Postgres /Oracle when th...Mike Bayer2007-09-221-1/+2
* - added 'passive_deletes="all"' flag to relation(), disables allMike Bayer2007-09-091-0/+3
* [ticket:728] foreign key checks for existing reflected FK and replaces itselfMike Bayer2007-09-081-1/+9
* Adjusted ColumnDefault default function fitness check to only insure that a g...Jason Kirtland2007-08-221-3/+7
* - method call removalMike Bayer2007-08-201-31/+10
* 1. Module layout. sql.py and related move into a package called "sql".Mike Bayer2007-08-181-14/+17
* fix hasattr typo [ticket:744]Jason Kirtland2007-08-151-1/+1
* mass has_key->__contains__ migration, [ticket:738]Mike Bayer2007-08-151-1/+1
* - case_sensitive=(True|False) setting removed from schema items, sinceMike Bayer2007-08-111-86/+3
* Correct docstring.Jason Kirtland2007-08-101-1/+1
* switch (simple) occurences of 'if len(x)' to 'if x': find . -name '*.py' |xar...Jonathan Ellis2007-08-031-2/+2
* ThreadLocalMetaData ought not .dispose() a ConnectionJason Kirtland2007-08-011-51/+63
* MetaData can now reflect() all tables in the database en-masse thanks to tabl...Jason Kirtland2007-07-311-98/+259
* add warnings for deprecated methods and optionsJonathan Ellis2007-07-301-7/+10
* - added Session constructor which turns autoflush/transactional onMike Bayer2007-07-291-1/+1
* clearer error for ForeignKey cant locate parent table, [ticket:565]Mike Bayer2007-07-291-1/+6
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to maintena...Mike Bayer2007-07-271-256/+119
* - foreign key specs can have any chararcter in their identifiersMike Bayer2007-07-181-1/+1
* bind/connectable compat, allow .bind = NoneJason Kirtland2007-07-171-2/+0
* - improved ability to get the "correct" and most minimal set of primary keyMike Bayer2007-07-141-10/+32