Skip to content

Instantly share code, notes, and snippets.

@zemd
Created January 21, 2014 19:55
Show Gist options
  • Save zemd/8547144 to your computer and use it in GitHub Desktop.
Save zemd/8547144 to your computer and use it in GitHub Desktop.
hstore extension with rails migrations
class SetupHstore < ActiveRecord::Migration
def self.up
enable_extension "hstore"
end
def self.down
disable_extension "hstore"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment