Ajustements
This commit is contained in:
@@ -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
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user