Skip to content

Instantly share code, notes, and snippets.

@AlexVKO
Created December 6, 2015 20:47
Show Gist options
  • Select an option

  • Save AlexVKO/45aa33777171cd6371fd to your computer and use it in GitHub Desktop.

Select an option

Save AlexVKO/45aa33777171cd6371fd to your computer and use it in GitHub Desktop.
rails postress migration hstore
class AddHstoreExtension < ActiveRecord::Migration
def up
execute 'CREATE EXTENSION hstore'
end
def down
execute 'DROP EXTENSION hstore'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment