diff options
| author | mo khan <mo@mokhan.ca> | 2015-02-03 21:30:13 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2015-02-03 21:30:13 -0700 |
| commit | 2085d8aecbfb095bbf9989a56dd74dc89f1d2a3e (patch) | |
| tree | 45ab2811e6eb29364dfb526e21727735bbd7e11b /app/models/agent.rb | |
| parent | bab5e66e261774700eb3ad515eb929fc85991a69 (diff) | |
add association from agents to events.
Diffstat (limited to 'app/models/agent.rb')
| -rw-r--r-- | app/models/agent.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/models/agent.rb b/app/models/agent.rb new file mode 100644 index 0000000..e5832da --- /dev/null +++ b/app/models/agent.rb @@ -0,0 +1,3 @@ +class Agent < ActiveRecord::Base + has_many :events +end |
