summaryrefslogtreecommitdiff
path: root/db/migrate/20120626095730_add_uuid_to_users.rb
blob: dbd500877448c4813c1c74e6321689c3e7d7c4cd (plain)
1
2
3
4
5
6
class AddUuidToUsers < ActiveRecord::Migration
  def change
    add_column :users, :uuid, :string
    add_index :users, :uuid
  end
end