Class: CreateSessions

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/six-updater-web/db/migrate/20090921092253_create_sessions.rb

Class Method Summary collapse

Class Method Details

.downObject



13
14
15
# File 'lib/six-updater-web/db/migrate/20090921092253_create_sessions.rb', line 13

def self.down
  drop_table :sessions
end

.upObject



2
3
4
5
6
7
8
9
10
11
# File 'lib/six-updater-web/db/migrate/20090921092253_create_sessions.rb', line 2

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

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