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