Habtm and belongs_to one table

I have the following:

Posts belong to a User
Posts may be Monitored by many Users

How do you characterize this?

class Post < ActiveRecord::Base
belongs_to :user
has_many :monitors

class Monitor < ActiveRecord::Base
has_many :posts, :as => user

class User < ActiveRecord::Base
has_many :posts # when a user does a post
belongs_to :monitor, :polymorphic => true

View this message in context:
http://www.nabble.com/habtm-and-belongs_to-one-table-t1470176.html#a3974957
Sent from the RubyOnRails Users forum at Nabble.com.

Sorry. Poor form to reply to my own post… I don’t think it’s a habtm
thing
as you see in my previous post.

thanks

View this message in context:
http://www.nabble.com/habtm-and-belongs_to-one-table-t1470176.html#a3974972
Sent from the RubyOnRails Users forum at Nabble.com.