How to enable another user to ingest data into a series you've created
* Run psql as yourself,
- grant insert on seriesname to username;
- grant update on seriesname_seq to username;
* To grant permission to all users to insert records in the series (for example), type
- grant insert on seriesname to public;
- grant update on seriesname_seq to public;
To view the permissions of the data series:
- \dp seriesname
- \dp seriesname_seq