bonjour, jai un erreur dans le code suivant

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
CREATE TABLE Formation (
  idFormation Serial  NOT NULL,
  Participants_idParticipants INT  NOT NULL,
  ForEnCoursTermine VARCHAR NULL,
  ForDiscipline VARCHAR NULL,
  ForDureeFormation VARCHAR NULL,
  ForAnneeFormation DATE NULL,
  ForOrganisme VARCHAR NULL,
  ForVille VARCHAR NULL,
  PRIMARY KEY(idFormation, Participants_idParticipants),
  INDEX Formation_FKIndex1(Participants_idParticipants),
  FOREIGN KEY(Participants_idParticipants)
    REFERENCES Participants(idParticipants)
l'erreur est la suivante
Code : Sélectionner tout - Visualiser dans une fenêtre à part
ERROR:  syntax error at or near "(" at character 379
Pouvez-vous m'aider merci

MaitrePylos