// Informations de ton Mail Hpay: Lien de connexion : https://webmail.hpay.cash Mail HPay: onanajunior92@hpay.cash Passe: onanajunior92@ /** *compte serveur test * */ Lien: https://node5085.myfcloud.com:2083/cpsess7699272229/frontend/paper_lantern/index.html Login: hpaytest Passe: C@StPhane1234#@321 /** * table beneficiaire */ CREATE TABLE `beneficiaires` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, -- Identifiant unique pour chaque enregistrement `idclient` bigint(20) NOT NULL, -- Référence à l'ID du client principal `idbeneficiaire` bigint(20) NOT NULL, -- Référence à l'ID du bénéficiaire (également dans la table clients) `date_ajout` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, -- Date d'ajout du bénéficiaire PRIMARY KEY (`id`), FOREIGN KEY (`idclient`) REFERENCES `clients`(`idclients`) ON DELETE CASCADE, -- Lien avec la table clients pour le client principal FOREIGN KEY (`idbeneficiaire`) REFERENCES `clients`(`idclients`) ON DELETE CASCADE -- Lien avec la table clients pour le bénéficiaire ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=sutf8_general_ci;