用户表 users 我设计了一个关联表 follows
create_table "follows", :id => false, :force => true do |t|
t.integer "me"
t.integer "you"
t.datetime "created_at"
end
请问“这里”怎么写?
class User < ActiveRecord::Base
#这里
end
class Follow < ActiveRecord::Base
#这里
end
belongs_to :xxx
has_many :xxx