# db/migrate/20110422210841_create_sites.rb # 1. :id => false # 2. :uuid # class CreateSites < ActiveRecord::Migration def self.up create_table(:sites, :id => false) do |t| t.string :uuid, :limit => 36, :primary => true t.timestamps end end def self.down drop_table :sites end end