doctrine-inheritance

Doctrine inheritance not inserting record into parent table

I've got the following database structure: Account: columns: email: string(255) name: type: string(255) UserRegistered: columns: email: type: string(255) email: true notnull: true unique: true username: type: string(255) ...

Doctrine inheritance. Is there an easy way to get all child classes/tables for using them in a select field in symfony forms?

I just started to use symfony 1.4 and Doctrine. (Used 1.0 - 1.2 + Propel a lot before). I thought to give Doctrine a try, because of the fast and huge Development process in the past. Thanks to jwage ;-) Im using Table Inheritance. This is a small portion of my schema.yml: Articles: columns: id: type: integer(4) primary:...

Fixtures and inheritance in Symfony

Hi! I have a database schema in Symfony like this: Persona: actAs: { Timestampable: ~ } columns: primer_nombre: { type: string(255), notnull: true } segundo_nombre: { type: string(255) } apellido: { type: string(255), notnull: true } rut: { type: string(255) } email: { type: string...