aboutsummaryrefslogtreecommitdiff
path: root/init-bd.sql
blob: 1ed1f3b40ae2fa161ef10e25846d5a3e44717201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
drop table if exists util cascade;
drop table if exists contact cascade;

create table util(
	id_util serial primary key,
	login varchar(20) not null,
	mdp varchar(20)
);

create table contact(
	id_contact serial primary key,
	nom varchar(100),
	email varchar(100),
	tel varchar(10),
	adresse varchar(100),
	latitude real,
	longitude real,
	id_util smallint not null references util
);

insert into util(login,mdp) values ('root','root');
insert into util(login,mdp) values ('pico','pico');