blob: 323d54b6e05947a47d2f034f1f7a4c8cb2623e9b (
plain) (
blame)
1
2
3
4
5
6
7
|
To activate timescaledb on your PostgreSQL server, add 'timescaledb' to
shared_preload_libraries in $PGDATA/postgresql.conf. For every database,
run
CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;
If you are upgrading, restart PostgreSQL server and run
ALTER EXTENSION timescaledb UPDATE TO '0.5.0';
|