Symfony 1.4, doctrine: multiple join to one table
问题 the scheme: User: options: collate: utf8_unicode_ci charset: utf8 tableName: users columns: ID: type: integer(4) primary: true autoincrement: true USERNAME: type: string(255) notnull: true Task: options: collate: utf8_unicode_ci charset: utf8 tableName: tasks columns: ID: type: integer(4) primary: true autoincrement: true CREATED_ID: type: integer(4) notnull: true OWNER_ID: type: integer(4) notnull: true DESCRIPTION: type: text notnull: true relations: User: onDelete: CASCADE local: CREATED