Sha256: 856af78bb9c3d25aa700a36b6917774261a278c19d0f6b219eb91fa27de2577a
Contents?: true
Size: 530 Bytes
Versions: 12
Compression:
Stored size: 530 Bytes
Contents
class CreateSessions < ActiveRecord::Migration def self.up # Set the following global variable to show that we are migrating # from a brand new database. Future migrations can detect this, and # avoid running unnecessary code. $FFCRM_NEW_DATABASE = true 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 def self.down drop_table :sessions end end
Version data entries
12 entries across 12 versions & 1 rubygems