beberlei
|
ac4c33c371
|
[2.0] DDC-214, DDC-303, DDC-304 - Fix several errors with Schema Inference from Database and Metadata and Comparisons, aswell as related bugs in DatabaseDriver. DDC-305 - Abstracted TRUNCATE command for all platforms.
|
2010-02-07 12:36:30 +00:00 |
|
beberlei
|
fade63a29c
|
[2.0] DDC-169 - Further refactorings, schema max identifier length is now used for asset generation. Added platform-wide test for unique index generation with create table.
|
2009-12-10 23:55:47 +00:00 |
|
beberlei
|
ba99f53fd5
|
[2.0] DDC-169 - Fix implicit/explicit index creation differences between platforms
|
2009-12-06 18:55:08 +00:00 |
|
beberlei
|
8a46eb0439
|
[2.0] DDC-169 - Finished ALTER Table TableDiff refactoring, adding code to handle index and FK changes. Added a general functional test for alter table against all platforms.
|
2009-12-06 12:13:15 +00:00 |
|
beberlei
|
0788cdf15e
|
[2.0] DDC-169 - Stripped case handling since its just a load of complex crap and doesn't solve any problem! Idea: just implement case-insensitivity in the comparator.
|
2009-12-04 22:41:09 +00:00 |
|
beberlei
|
70075d8f80
|
[2.0] DDC-169 - Added possibility to control which case mode schema assets are created with in SchemaManager
|
2009-12-04 21:58:16 +00:00 |
|
beberlei
|
556f8699ee
|
[2.0] DDC-186 - Fixed DatabaseDriver to work with new Schema abstraction, added functional test-cases for database to yaml convertion.
|
2009-12-04 21:40:03 +00:00 |
|
beberlei
|
b0bbe281f3
|
[2.0] DDC-169 - Introduced handling of schema / database case-sensitivity differences and to allow compability between different platforms.
|
2009-12-03 22:10:13 +00:00 |
|
beberlei
|
197224de2e
|
[2.0] DDC-169 - Changed AbstractPlatform and AbstractSchemaManager Constraint API to accept Constraint interface, which is implemented by indexes and foreign keys.
|
2009-12-02 22:28:38 +00:00 |
|
beberlei
|
25c9588592
|
[2.0] DDC-169 - Changed AbstractPlatform and AbstractSchemaManager and children to accept Sequences in their create and get sql methods.
|
2009-12-02 19:07:38 +00:00 |
|
beberlei
|
8562c80890
|
[2.0] DDC-169 - Changed AbstractPlatform and AbstractSchemaManager and children to accept Table, Index and ForeignKey instances for the respective create*() methods.
|
2009-12-02 18:52:21 +00:00 |
|
beberlei
|
e3314dae16
|
[2.0] DC-169 - New method AbstractSchemaManager::createSchema() which creates a schema instance with full tables and sequences, additionally listTables() was rewritten to return a full Table instance instead of just the table names.
|
2009-11-30 23:12:26 +00:00 |
|
beberlei
|
af48974a75
|
[2.0] DDC-169 - Converted introspection queries of all platforms to return Column, Sequence, Index, ForeignKey Schema Instances instead of arrays, heavily pimped Oracle support thereby.
|
2009-11-30 19:02:05 +00:00 |
|
beberlei
|
22cfa37f43
|
[2.0] - DDC-169 - Began refactoring of DBAL code, introduced object notation for a database schema, including Tables, Indexes, Constraints, Sequences and Columns. Added a CreateSql Visitor which transforms a schema object graph into the required SQL statements to create it. Next: Replacing SchemaTool::getCreateSql() with new syntax...
|
2009-11-26 21:56:08 +00:00 |
|
beberlei
|
a7847952a1
|
[2.0] Fixed DDC-63 and DDC-106. Oracle tests for SchemaManager need further tweeking, marked as skipped for now.
|
2009-11-03 16:56:05 +00:00 |
|
beberlei
|
cfea7883e0
|
[2.0] DDC-91 - Enhanced SchemaManager::listTableIndexes() considerably. Add primary keys to the index list, add a bool flag primary to each index, add an array of columns to each index. Moved a test to SchemaFunctionalTestCase to check that every database (Mysql, Pgsql, Sqlite, Oracle) returns exactly the same data from this function.
|
2009-11-03 08:58:03 +00:00 |
|
beberlei
|
6a26de11ff
|
[2.0] Fixed DDC-103 - Add missing changed file.
|
2009-11-02 15:10:26 +00:00 |
|
jwage
|
c8362da494
|
[2.0] Added functionality to convert a Doctrine 1 schema to Doctrine 2 to help users with upgrading. Lots of other small bug fixes and changes.
|
2009-10-06 22:38:34 +00:00 |
|
romanb
|
b1d34fca1c
|
[2.0] Work on SchemaTool and DBAL.
|
2009-08-21 18:13:22 +00:00 |
|
guilhermeblanco
|
103cdf5778
|
[2.0] More docblocks. Renamed methods Type::addCustomType to Type::addType and Connection::exec to Connection::executeUpdate. Added Type::hasType.
|
2009-08-10 22:43:27 +00:00 |
|
jwage
|
dcb1fcdb75
|
[2.0] Removing remaining return methods where not needed
|
2009-05-30 23:47:28 +00:00 |
|
jwage
|
34da8376b4
|
[2.0] Fixing __call() in AbstractSchemaManager, doc blocks, clean up
|
2009-05-30 23:44:16 +00:00 |
|
romanb
|
ac8492d241
|
[2.0] DBAL code cleanups.
|
2009-05-30 18:38:00 +00:00 |
|
romanb
|
9586b748a8
|
[2.0] Refactorings
|
2009-05-30 14:10:01 +00:00 |
|
romanb
|
548e07467e
|
[2.0] Solved the hassle with dropping/creating the test database through introducing a second test database for temporary connections. Please check the dbproperties.xml.dev file for reference. The 2 test databases need to be created *once* before the very first time of running the tests. New procedure successfully tested against mysql, postgresql, oracle.
|
2009-05-30 13:57:57 +00:00 |
|
romanb
|
8de151d8ea
|
[2.0] Small cleanups
|
2009-05-30 11:33:06 +00:00 |
|
romanb
|
acec85a412
|
[2.0] Fixed hardcoded database name.
|
2009-05-30 10:16:54 +00:00 |
|
romanb
|
2b8091e80c
|
[2.0] Code review with comments and small corrections.
|
2009-05-30 09:37:56 +00:00 |
|
jwage
|
d34a05a257
|
[2.0] Oracle SchemaManager tests and general refactoring of tests
|
2009-05-30 02:27:50 +00:00 |
|
jwage
|
f994680d54
|
[2.0] More general work on the Platform and SchemaManager classes(primarily pgsql)
|
2009-05-28 21:34:35 +00:00 |
|
jwage
|
0ed8e7a34b
|
[2.0] Fixing wrong function sig
|
2009-05-28 02:45:51 +00:00 |
|
jwage
|
75e0c1ede7
|
[2.0] More general work on the SchemaManager and Platform classes. Making API more complete and adding sqlite and mysql test coverage.
|
2009-05-28 02:04:51 +00:00 |
|
jwage
|
746d9bc38f
|
[2.0] Adding listTableColumns() support for mysql.
|
2009-05-27 22:14:27 +00:00 |
|
jwage
|
7426baf53e
|
[2.0] General work on Platform and SchemaManager classes
|
2009-05-27 18:54:40 +00:00 |
|
jwage
|
d458197e3a
|
[2.0] Another step towards finishing namespace refactoring
|
2009-02-20 05:46:20 +00:00 |
|
romanb
|
deb095f2c8
|
Some cleanups, docblocks, and a small needed refactoring of ClassMetadataFactory.
|
2009-02-05 17:34:44 +00:00 |
|
romanb
|
e202cb1ce1
|
[2.0] Progress on UnitOfWork, persisters and basic functional tests.
|
2009-02-02 11:55:50 +00:00 |
|
romanb
|
22e94ac594
|
Enabling namespaces. Final restructurings.
|
2009-01-22 19:38:10 +00:00 |
|
romanb
|
34f4ee71fa
|
First tests for basic collection implementation. First experimental use of closures (Currently commented out, because the svn server makes a syntax check against 5.2.x).
|
2009-01-12 13:34:41 +00:00 |
|
romanb
|
d97336373d
|
Finally first, very basic, running CRUD tests for Doctrine 2
|
2009-01-07 17:46:02 +00:00 |
|