retrait de pganon
This commit is contained in:
@@ -4,7 +4,6 @@ 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,
|
||||
@@ -52,7 +51,10 @@ create table fournisseur (
|
||||
fournisseur text not null
|
||||
);
|
||||
|
||||
create table region
|
||||
create table region (
|
||||
id int primary key,
|
||||
region text not null
|
||||
);
|
||||
|
||||
insert into region values
|
||||
(1, 'Est'), (2, 'Ouest');
|
||||
|
||||
Reference in New Issue
Block a user