This commit is contained in:
2025-09-12 12:54:16 +02:00
parent 1d271c5b82
commit 60553e288e
7 changed files with 78 additions and 16 deletions

View File

@@ -4,6 +4,7 @@ create extension if not exists postgis;
create extension if not exists pgrouting;
create extension if not exists vector;
create extension if not exists pgcrypto;
create extension if not exists pganon;
create table adherent (
id int primary key,
@@ -45,3 +46,13 @@ create table ligne (
prix_unitaire decimal,
quantite decimal
);
create table fournisseur (
id int primary key,
fournisseur text not null
);
create table region
id int primary key,
region text not null
);