[Modeling-cvs] ProjectModeling/Modeling/DatabaseAdaptors/MySQLAdaptorLayer MySQLSchemaGeneration.py,
Status: Abandoned
Brought to you by:
sbigaret
From: <sbi...@us...> - 2003-12-17 17:13:02
|
Update of /cvsroot/modeling/ProjectModeling/Modeling/DatabaseAdaptors/MySQLAdaptorLayer In directory sc8-pr-cvs1:/tmp/cvs-serv25388/Modeling/DatabaseAdaptors/MySQLAdaptorLayer Modified Files: MySQLSchemaGeneration.py Log Message: updated doc Index: MySQLSchemaGeneration.py =================================================================== RCS file: /cvsroot/modeling/ProjectModeling/Modeling/DatabaseAdaptors/MySQLAdaptorLayer/MySQLSchemaGeneration.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MySQLSchemaGeneration.py 10 Jan 2003 10:45:45 -0000 1.1 --- MySQLSchemaGeneration.py 17 Dec 2003 17:12:58 -0000 1.2 *************** *** 50,55 **** class MySQLSchemaGeneration(SchemaGeneration): """ ! See Modeling.interfaces.SchemaGeneration for further details """ --- 50,58 ---- class MySQLSchemaGeneration(SchemaGeneration): """ + Implements the details db-schema generation which differ from the + standard behaviour implemented by SchemaGeneration. ! See also Modeling.SchemaGeneration and Modeling.interfaces.SchemaGeneration ! for further details """ *************** *** 113,116 **** --- 116,122 ---- def foreignKeyConstraintStatementsForRelationship(self, relationship): """ + Removes ' INITIALLY DEFERRED' from the statements returned by + SQLExpression's foreignKeyConstraintStatementsForRelationship() and + returns them. """ sqlExprs=SchemaGeneration.foreignKeyConstraintStatementsForRelationship.im_func(self, relationship) |