0
votes
1answer
30 views
How does Doctrine handle changes to the database schema?
In brief, what happens when you add a column to a table? What happens when you remove one?
In more details, suppose you have the following:
class User extends Doctrine_Record
{
…
2
votes
3answers
37 views
PHP / Doctrine ORM multiple ‘one-to-one’ relations to the same class
Just working on a project where I have a class called 'Product' and a class called 'Image'. Each product has two types of images, one 'front' image and one 'back' image, so I defin …
0
votes
1answer
34 views
PHP - Doctrine, specify interfaces in YAML
Hi,
Does anyone know if it is possible to specify an interface for a Doctrine model to implement within YAML?
I cannot find anything within the documentation.
Thanks
0
votes
1answer
36 views
php doctrine behavior help
Hi,
I'm going through tutorials for doctrine and have come across a problem. Does the autoload function not apply on behaviours?
This is the tutorial I've been following. It sho …
0
votes
1answer
40 views
PHP Doctrine - YAML syntax help. Default value for many to many relationship?
Hi, I have the following YAML schema for organising users in Doctrine:
Person:
tableName: people
columns:
id:
type: integer
primary: true
autoincrement: …
1
vote
2answers
65 views
PHP Doctrine relationships and inheritance
Hi,
I've been looking at Doctrine and it seems like a good way to manage models in my OO PHP application.
I would like to create Models that have some optional properties. Rath …
0
votes
2answers
57 views
PHP Doctrine ORM newbie - Valid DSN for dropping database?
Hi,
I'm going through the tutorials for doctrine and liking it so far, however I'm stuck at the point of dropping/regenerating the db schema.
This is the code I am using (pretty m …
0
votes
3answers
38 views
Symfony difference between <ModelName>.class.php and <ModelName>Table.class.php
Cuold someone explain me the difference between the Doctrine auto generated files .class.php and Table.class.php?
For example in the Jobeet tutorial there's JobeetJob.class.php and …
0
votes
1answer
57 views
Symfony: Model Translation + Nested Set
Hi,
I'm using Symfony 1.2 with Doctrine. I have a Place model with translations in two languages. This Place model has also a nested set behaviour.
I'm having problems now creati …
1
vote
3answers
71 views
Doctrine - How do you ask WHERE cond1 AND ( cond2 OR cond3)
While using Doctrine in a Symfony project I've come into the situation where I need to apply a condition and then one of two following conditions (which both happen to be sub-queri …
0
votes
1answer
40 views
PHP - Doctrine saving to more than one table
Hi,
I have a table that is related to another. Is it possible to use the auto incremented Id of table one as the foreign key of table two in one statement, rather than using lastIn …
0
votes
1answer
35 views
PHP Doctrine Inheritance
Hi,
I'm reading through the Doctrine documentation but I can't find a way to implement the type of inheritance I want to use.
I would like to set up a hierarchy like so:
Node -& …
0
votes
1answer
39 views
Convert date to string upon saving a doctrine record
Hi, I'm trying to migrate one of my PHP projects to Doctrine. I've never used it before so there are a few things I don't understand. In my current code, I have a class similar to …
2
votes
2answers
48 views
Doctrine ORM: Create Table Like Another
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 u …
0
votes
0answers
22 views
Creating a file upload template in Doctrine ORM
Hey all.
I'm using Doctrine 1.2 as my ORM for a Zend Framework Project. I have defined the following Model for a File.
File:
columns:
id:
primary: true
…
