Commit | Line | Data |
---|---|---|
b7cd987d BA |
1 | -- Se loguer avec droits admin sur un serveur PostgreSQL |
2 | -- (en local ou non). Puis : | |
3 | ||
4 | -- superuser status required to use command 'copy' ... | |
5 | create role irsdi with superuser login password 'irsdi2017'; | |
6 | create database edf25m with owner irsdi; | |
7 | \c edf25m irsdi -- connect to DB as irsdi | |
8 | create table series ( id serial primary key, curve real[] ); |