session_store.rb 193 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 require 'active_record/session_store' class ActiveRecord::SessionStore::Session has_many :orders, primary_key: :session_id, foreign_key: :session_id, class_name: 'OrdersPlugin::Order' end