- Published on
Add HStore support to your Postgres database
- Authors
- Name
- by Zak El Fassi
Postgres doesn't have HStore enabled by default (especially if you're using Postgresapp on OSX ); There is a quick fix though.
# This is to enable hstore in your current database
$ psql YOUR_CURRENT_DATABASE -c 'create extension hstore;'
# And this is to enable it for your future databases
$ psql template1 -c 'create extension hstore;'
Simple !
You might also enjoy
Fix Vagrant and VirtualBox
2 min read
jQuery Mobile 1.3.0 SASS / Compass [GitHub]
1 min read
Backbone-AMD using RequireJS Boilerplate [GitHub]
Tackling the complexities of heavy JavaScript applications, this post introduces an open-source Backbone-AMD Boilerplate, designed to simplify creating modular Backbone-AMD compliant apps. It invites readers to engage with the project through forking, pulling, and suggesting improvements.
1 min read
Bootstrap 3 : An early overview (and download link).
1 min read