summaryrefslogtreecommitdiff
path: root/db/migrate/20140807003036_create_sessions.rb
blob: c12f33a27e7ff07be28fe1d04da65496a7cc61f1 (plain)
1
2
3
4
5
6
7
8
9
class CreateSessions < ActiveRecord::Migration
  def change
    enable_extension 'uuid-ossp'
    create_table :sessions, id: :uuid do |t|
      t.integer :user_id
      t.timestamps
    end
  end
end