Sha256: 9ea36c57a3bb897cd4a2e0e06ba10ba3e7453b3a673935d8ca9e81836556e065
Contents?: true
Size: 526 Bytes
Versions: 7
Compression:
Stored size: 526 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
7 entries across 7 versions & 2 rubygems