diff options
Diffstat (limited to 'web/website/init-bd.sql')
-rw-r--r-- | web/website/init-bd.sql | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/web/website/init-bd.sql b/web/website/init-bd.sql index 6cd080f..00120c9 100644 --- a/web/website/init-bd.sql +++ b/web/website/init-bd.sql @@ -25,8 +25,12 @@ insert into util(login,mdp) values ('root','root'); insert into util(login,mdp) values ('pico','pico'); */ ---drop table if exists aaa cascade; +drop table if exists trame cascade; ---create table aaa( --- bbb ccc ddd ---); +create table trame( + id_trame serial primary key, + heure varchar(100), + protocole varchar(100), + source varchar(100), + destination varchar(100) +); |