Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 1st, 2012  |  syntax: None  |  size: 0.30 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ActiveRecord Migrations with UUID primary key
  2. create_table :some_things, :id => false do |t|
  3.   t.column :id, :uniqueidentifier, :primary => true
  4.   t.column :name, :string, :limit => 255
  5.   t.column :type, :tinyint
  6.   t.column :deleted_flag, :bit
  7.   t.column :class_id, :uniqueidentifier
  8.   t.timestamps
  9. end