Skip to content

Instantly share code, notes, and snippets.

View masom's full-sized avatar

Martin Samson masom

  • Shopify
  • Ottawa, Canada
View GitHub Profile
@masom
masom / gist:1108684
Created July 27, 2011 04:37
rake db:migrate using MonetDB
#Migration files:
class CreateCategory < ActiveRecord::Migration
def self.up
create_table :categories do |t|
t.string :name
t.timestamps
end
end