summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/schema.py
Commit message (Expand)AuthorAgeFilesLines
* - fixed condition that occurred during reflection when a primary keyMike Bayer2006-09-301-0/+6
* decruftifyMike Bayer2006-09-281-4/+2
* - added autoincrement=True to Column; will disable schema generationMike Bayer2006-09-231-3/+14
* - ForeignKey reports better error message for column not foundMike Bayer2006-09-221-5/+8
* further fixes to case sensitive logicMike Bayer2006-09-041-12/+37
* defaults and constraints have optional parentMike Bayer2006-08-311-2/+2
* - added case_sensitive argument to MetaData, Table, Column, determinesMike Bayer2006-08-311-27/+67
* - deregister Table from MetaData when autoload fails; [ticket:289]Mike Bayer2006-08-281-4/+8
* [ticket:282]Mike Bayer2006-08-231-1/+1
* working on sequence quoting support....Mike Bayer2006-08-211-7/+17
* - postgres reflection moved to use pg_schema tables, can be overriddenMike Bayer2006-08-211-2/+14
* quoting facilities set up so that database-specific quoting can beMike Bayer2006-08-121-0/+11
* all create()/drop() calls have a keyword argument of "connectable".Mike Bayer2006-08-091-14/+42
* patch for [ticket:105], adding "owner" support to oracle...not tested yetMike Bayer2006-07-191-0/+3
* added table.exists()Mike Bayer2006-07-191-0/+10
* added 'checkfirst' argument to table.create()/table.drop()Mike Bayer2006-07-191-6/+6
* added __setitem__ to ConstraintMike Bayer2006-07-181-0/+2
* overhaul to schema, addition of ForeignKeyConstraint/Mike Bayer2006-07-141-30/+141
* some adjustments to activemapper's objectstore to be composed against Session...Mike Bayer2006-07-011-2/+2
* removed historyarray testMike Bayer2006-06-161-2/+11
* fixed bug where tables with schema name werent getting indexed in metadata co...Mike Bayer2006-06-061-5/+2
* restored global_connect() function, default table metadataMike Bayer2006-06-021-0/+9
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-251-120/+211
* anonymous indexes use column._label to avoid name collisionsMike Bayer2006-05-231-2/+2
* had unicode check improperly placedMike Bayer2006-05-061-2/+3
* foreignkey checks for unicode incoming stringMike Bayer2006-05-031-1/+2
* commented out default schema name checkMike Bayer2006-04-261-1/+1
* a little spring cleaning for the util package, etcMike Bayer2006-04-071-2/+2
* split up Session into Session/LegacySession, added some new constructor argsMike Bayer2006-04-061-14/+41
* moves the binding of a TypeEngine object from "schema/statement creation" tim...Mike Bayer2006-04-061-1/+0
* merged Rick Morrison / Runar Petursson's MS-SQL module, with adjustments to a...Mike Bayer2006-04-031-2/+5
* refactor to Compiled.get_params() to return new ClauseParameters object, a mo...Mike Bayer2006-03-131-1/+1
* got column onupdate workingMike Bayer2006-03-051-1/+9
* got column defaults to be executeableMike Bayer2006-03-041-9/+21
* making sequences, column defaults independently executeableMike Bayer2006-03-041-4/+15
* engine argument on tables optionalMike Bayer2006-03-021-0/+3
* made SchemaEngine more prominent as the base of Table associationMike Bayer2006-03-011-4/+9
* Merge indexes [1047]:[1048] into trunk (for #6)Jason Pellerin2006-02-261-20/+79
* create() statements return the created object so they can be instantiated andMike Bayer2006-02-261-0/+2
* merged sql_rearrangement branch , refactors sql package to work standalone withMike Bayer2006-02-251-105/+58
* fix to silent "recursive" bug in schema getattr that was somehow running only...rel_0_1_2Mike Bayer2006-02-241-1/+1
* fix to EagerLoad where it late-initializes its eager chain, thereby not getti...Mike Bayer2006-02-221-0/+6
* merged eager loading overhaul rev 1001:1009Mike Bayer2006-02-201-1/+4
* exception package added, support throughoutMike Bayer2006-02-191-8/+9
* added indexes to schema/ansisql/engineMike Bayer2006-02-181-2/+54
* added an assertion to insure that a column is only attached to one tableMike Bayer2006-02-171-0/+2
* streamlined engine.schemagenerator and engine.schemadropper methodologyMike Bayer2006-02-111-5/+5
* table supports per-engine-type options, ansisql allows enginesMike Bayer2006-02-051-3/+1
* started PassiveDefault, which is a "database-side" default. mapper will goMike Bayer2006-02-051-0/+12
* columns can be specified to override those from autoload=TrueMike Bayer2006-02-041-4/+5