Hello,
Is there any way, when using Doctrine, to create a table like another? I know in MySQL there is a function to do so:
CREATE TABLE user2 LIKE user;
and tables user and user2 will be identical. Can this be done in Doctrine?
|
|
|||
|
|
|
I imagine that what you are looking for is to define (let's use your example) on the schema level that So, in your
This way |
||
|
|
|
I think no. :( You can create tables from template like here http://www.doctrine-project.org/documentation/cookbook/1_1/en/plug-and-play-schema-information-with-templates or use Doctrine_RawSql. |
||
|
|