PostgreSQL schema for vector tiles. Modeled from Mapbox mbtiles and CartoDB postgresql extensions
$ npm install pgtiles
varpgtiles=require('pgtiles');varconnectionString='postgres://username:password@host:dbname/5432';vartileSchema=pgtiles(connectionString);// Add the table schema and functions to the designated PostgreSQL databasetileSchema.create(function(err,result){if(err){// handle error}console.log(result);// Result show the tables and functions created});// Remove the tables and functions to rollback the databasetileSchema.rollback(function(err,result){if(err){// handle error}console.log(result);// Result show the tables and functions dropped});Andy B