aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/118_remove_sessions_again.rb
blob: dc5a63df76540d39a5fa037f7abce00f28ba3787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class RemoveSessionsAgain < ActiveRecord::Migration
  def self.up
       drop_table :sessions
  end

  def self.down
      create_table :sessions do |t|
        t.string :session_id, :null => false
        t.text :data
        t.timestamps
      end

      add_index :sessions, :session_id
      add_index :sessions, :updated_at
  end
end