Class: CreateDbSessionStores

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/db_session/templates/create_db_session_stores.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
# File 'lib/generators/db_session/templates/create_db_session_stores.rb', line 2

def change
  create_table :db_session_stores do |t|
    t.string :serialized_data

    t.timestamps
  end
end