Skip to content

Instantly share code, notes, and snippets.

@dariocravero
Forked from hakanensari/1_create_products.rb
Created February 10, 2014 15:40
Show Gist options
  • Save dariocravero/8918084 to your computer and use it in GitHub Desktop.
Save dariocravero/8918084 to your computer and use it in GitHub Desktop.
Sequel.migration do
up do
run 'CREATE EXTENSION "uuid-ossp"'
create_table :products do
primary_key :id, {type: :uuid, default: Sequel.function(:uuid_generate_v4)}
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment