vote up 2 vote down star

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?

flag

I did not even know this is possible in MySQL. Thanks for your question :-) – Exception e Nov 26 at 15:48

2 Answers

vote up 1 vote down check

I imagine that what you are looking for is to define (let's use your example) on the schema level that user2 inherits from user when your model is generated. You can do this by using doctrine's concrete inheritance which is described in the documentation.

So, in your schema.yml:

User:
  columns:
    name: string

User2:
  inheritance:
    extends: User
    type: concrete
  columns:
    something: int

This way user2 will be a separate table and contain the same columns ("name") as previously defined in user. I'm not sure why you would like two identical tables, but that is most definitely possible using the above method.

link|flag
This is probably the best solution for this problem... thanks! – JB Lesage Dec 6 at 18:32
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.