スキーム:
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_ID
foreign: ID
User:
onDelete: CASCADE
local: OWNER_ID
foreign: ID
ご覧のとおり、Task.OWNER_ID と Task.CREATED_ID は User.ID を指していますが、実際の SQL テーブルでは OWNER_ID のみが外部キーとして表示されます。
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `tasks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`created_id` int(11) NOT NULL,
`owner_id` int(11) NOT NULL,
`description` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `owner_id_idx` (`owner_id`),
CONSTRAINT `tasks_owner_id_users_id` FOREIGN KEY (`owner_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
symfony はエラーをドロップしません。テーブルへの結合をさらに定義することはできませんか?