Go to file
2014-05-07 18:08:38 +02:00
expected Enable running all tests via "installcheck" 2014-05-06 10:18:38 +02:00
scripts-available Stick with user tables being in public 2014-05-06 10:53:19 +02:00
scripts-enabled Import cartodb/lib/sql/test, add search_path tweaker 2014-05-05 18:48:48 +02:00
sql Enable running all tests via "installcheck" 2014-05-06 10:18:38 +02:00
test Re-add the test/Makefile which was available while in cartodb/lib/sql 2014-05-07 18:08:38 +02:00
util Generate script to create migrate from unpackaged 2014-05-07 18:06:20 +02:00
.gitignore Enable running all tests via "installcheck" 2014-05-06 10:18:38 +02:00
.travis.yml Travis: install postgresql server 2014-05-06 10:28:06 +02:00
cartodb_hooks.sql Add debugging line 2014-05-06 16:45:14 +02:00
cartodb.control Include some of the cartodb scripts in the extension 2014-04-30 19:03:14 +02:00
LICENSE Update LICENSE, set copyright ownership to Vizzuality 2014-05-06 07:33:01 +02:00
Makefile Generate script to create migrate from unpackaged 2014-05-07 18:06:20 +02:00
README.md Update README with info about installing/testing/using 2014-05-06 11:11:49 +02:00

cartodb-postgresql

PostgreSQL extension for CartoDB

See https://github.com/CartoDB/cartodb/wiki/CartoDB-PostgreSQL-extension

Dependencies

Install

make all install

Test installation

make installcheck

NOTE: if test_ddl_triggers fails it's likely due to an incomplete installation of schema_triggers: you need to add schema_triggers.so to the shared_preload_libraries setting in postgresql.conf !

Usage

In a database that needs to beturned into a "cartodb" user database, run:

  CREATE EXTENSION postgis;
  CREATE EXTENSION schema_triggers;
  CREATE EXTENSION cartodb;