2011-04-07 21:59:32 +00:00
|
|
|
module Msf
|
|
|
|
class DBManager
|
|
|
|
|
|
|
|
class Session < ActiveRecord::Base
|
2011-04-15 18:54:27 +00:00
|
|
|
belongs_to :host
|
|
|
|
|
|
|
|
has_one :workspace, :through => :host
|
|
|
|
|
|
|
|
has_many :events, :class_name => "SessionEvent", :order => "created_at"
|
2011-04-20 17:49:27 +00:00
|
|
|
has_many :routes
|
2011-04-15 18:54:27 +00:00
|
|
|
|
|
|
|
named_scope :alive, :conditions => "closed_at IS NULL"
|
|
|
|
named_scope :dead, :conditions => "closed_at IS NOT NULL"
|
|
|
|
|
2011-04-07 21:59:32 +00:00
|
|
|
serialize :datastore
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|