私はoptionnalという入力があるフォームを持っていますが、外来キーでDoctrineが私にエラーを表示するため、ユーザーが入力しなければフォームを有効にできません。外部キーをnullに設定するにはどうすればよいですか? (symfony)
SQLSTATE[HY000]: General error: 1452 Cannot add or update a child row: a foreign key constraint fails (`logements`.`bail`, CONSTRAINT `bail_ibfk_3` FOREIGN KEY (`locataire2`) REFERENCES `locataire` (`nud`) ON DELETE CASCADE ON UPDATE CASCADE)
私はphpMyAdminの中で同じ要求を試してみましたが、それが正常に動作します:私は、外部キーがnullに設定することができます。
私は外部キーをnullに設定し、Doctrineエラーなしでフォームを有効にするにはどうすればよいですか?
EDIT
Bail:
connection: doctrine
tableName: bail
columns:
id:
type: integer(2)
fixed: false
unsigned: true
primary: true
autoincrement: true
locataire1:
type: string(20)
fixed: false
unsigned: false
primary: false
notnull: false
autoincrement: false
locataire2:
type: string(20)
fixed: false
unsigned: false
primary: false
notnull: false
autoincrement: false
logement:
type: integer(2)
fixed: false
unsigned: true
primary: false
notnull: false
autoincrement: false
datedeb:
type: date(25)
fixed: false
unsigned: false
primary: false
notnull: false
autoincrement: false
datefin:
type: date(25)
fixed: false
unsigned: false
primary: false
default: '0000-00-00'
notnull: false
autoincrement: false
colloc:
type: integer(4)
fixed: false
unsigned: false
primary: false
default: '0'
notnull: false
autoincrement: false
bailglissant:
type: string(12)
fixed: false
unsigned: false
primary: false
default: 'Non spécifié'
notnull: false
autoincrement: false
relations:
Locataire:
local: locataire1
foreign: nud
type: one
Logement:
local: logement
foreign: id
type: one
Locataire_3:
class: Locataire
local: locataire2
foreign: nud
type: one
スキーマ定義とフォームを貼り付けてください。フィールドが本当にオプションとして定義されている場合は、そのようなメッセージを受け取るべきではありません。エラーはデータベースから来ているので、doctrineはそこに '0'を入れようとします。 –
私のフォームのウィジェットは "locataire2" – Elorfin