Created
March 15, 2012 07:14
-
-
Save tddium/2042687 to your computer and use it in GitHub Desktop.
Installing Postgres database extensions in Tddium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2011, 2012 Solano Labs All Rights Reserved | |
namespace :tddium do | |
desc "load database extensions" | |
task :db_hook do | |
Rake::Task["tddium:default_db_hook"].invoke | |
# There is not yet a way to determine Tddium PG version from environment | |
contrib = '/usr/share/postgresql/8.4/contrib/hstore.sql' | |
Kernel.system("psql #{ENV['TDDIUM_DB_NAME']} -f #{contrib}") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment