0
votes
1answer
7 views
What does mutators and accessors do in Doctrine?
In this document, it explains how to use mutators and accessors in Doctrine, but does not explain what they are.
Could anyone explain what mutators and accessors do and what they …
0
votes
2answers
23 views
How does one call the down method for a Doctrine migration in Symfony 1.2?
I am using Symfony 1.2 with the sfDoctrinePlugin.
I couldn't find any command to call the down method on a migration, neither the documentation suggests any related arguments to t …
0
votes
0answers
16 views
PHP Doctrine relationship with namespaces
Hello, i just started using PHP namespaces. I have two models classes in separate files
In both files first i declare namespace
namespace eu\ed\sixImport\importViewer\models;
f …
0
votes
4answers
51 views
Tracking the views of a given row
Hi there,
I have a site where the users can view quite a large number of posts. Every time this is done I run a query similar to UPDATE table SET views=views+1 WHERE id = ?. Howev …
0
votes
1answer
38 views
What’s the best way to make small schema updates with Doctrine/Symfony?
What's the best way to make small schema updates to your symfony/doctrine application?
My issue is, I'm working on a new side-project and occasionally find myself adding a new col …
0
votes
2answers
37 views
Doctrine schema.yml generator
Hi,
I am pretty new to doctrine. I made two small projects with doctrine for my own but now I am about to create big project for my client. The project will have more than 50 tabl …
0
votes
0answers
10 views
Custom relation names in models generated from DB
Hi,
I'm generating my models from database and I get something like this:
public function setUp()
{
parent::setUp();
$this->hasOne('Articles', array(
'local' = …
0
votes
1answer
37 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
50 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
56 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: …
0
votes
1answer
36 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
39 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
71 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 …
0
votes
0answers
28 views
Generated Doctrine models respect case, but generated Yaml does not
Just getting started with Doctrine ORM for PHP (v1.1.5) and ran into something unexpected.
I am generating models from the db (MySQL 4) using:
Doctrine::generateModelsFromDb($pat …
0
votes
0answers
26 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
…
