Closed mindplay-dk closed 7 years ago
We currently run the risk of table-name collisions between modules.
To address this, we should add support for (optional) schema-name to the Table model in mindplay/sql.
PostgreSQL should implement this using actual schema.
MySQL should implement this by prefixing table-names.
Most likely we'll need to change the signature of the quote() method in the Driver class to include an optional second $schema_name argument.
quote()
$schema_name
Have a preliminary integration-test branch with the setup required for tests for this feature.
Implemented in 0.7
0.7
We currently run the risk of table-name collisions between modules.
To address this, we should add support for (optional) schema-name to the Table model in mindplay/sql.
PostgreSQL should implement this using actual schema.
MySQL should implement this by prefixing table-names.
Most likely we'll need to change the signature of the
quote()
method in the Driver class to include an optional second$schema_name
argument.