blob: f1a4f2b81a58cb2169e7d90c6236e855593174b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--Creation of the main table
drop table if exists trame cascade;
create table trame(
id_trame serial primary key,
heure varchar(100),
protocole varchar(100),
source varchar(100),
destination varchar(100)
);
|