Ajustements

This commit is contained in:
2025-08-29 11:18:26 +02:00
parent bb465e0a18
commit d12cd30a96
3 changed files with 10 additions and 8 deletions

View File

@@ -10,13 +10,13 @@ create table adherent (
create table famille (
code text primary key,
famille text,
code_parent text
code_parent text -- references famille(code)
);
create table article (
code text primary key,
article text,
famille_code text, -- references famille(famille)
famille_code text, -- references famille(code)
factpoids int,
unitevente int,
prix decimal,
@@ -29,7 +29,7 @@ create table article (
create table ticket (
id int primary key,
date_ticket timestamp,
adherent_id int,
adherent_id int, -- references adherent(id)
mode_rglt int
);