0
votes
1answer
32 views
Rails creating users, roles, and projects
I am still fairly new to rails and activerecord, so please excuse any oversights.
I have 3 models that I'm trying to tie together (and a 4th to actually do the tying) to create a …
1
vote
2answers
51 views
PostgreSQL, Rails and :order => problem
I have the following line in my ActiveRecord model:
class Record < ActiveRecord::Base
has_many :users, :through => :record_users, :uniq => true, :order => "record_ …
0
votes
1answer
31 views
Rails Filter records of child model based upon the parent model attribute
Following are the 1-to-M models:
class FotoGossip < ActiveRecord::Base
has_many :uploads
attr_accessible :published_at, ...
end
class Upload < ActiveRecord::Base
…
0
votes
3answers
347 views
Can’t define :joins conditions in has_many relationship ?
Hi,
I have a relationship table :
create_table "animal_friends", :force => true do |t|
t.integer "animal_id"
t.integer "animal_friend_id"
t.datetime "created_at" …
1
vote
1answer
65 views
Pattern for unidirectional has_many join?
It occurred to me that if I have a has_many join, where the foreign model does not have a belongs_to, and so the join is one way, then I don't actually need a foreign key.
We cou …
0
votes
2answers
193 views
Pagination with hasMany association cakePHP
I have two tables:
Contestant and Votes
Contestant hasMany Votes
I've tried doing a count(Vote.id) as Votes so I can place it on the
recordset and just paginate them but I have n …
0
votes
0answers
10 views
Update in rails for has_many associations
I have a has_many association, and a UI that uses javascript to dynamically add/remove as many has_many items as the user wants. After they are done, they hit save, which would cal …
0
votes
3answers
59 views
Only one record true, all others false, in rails
Hi,
I have the following situation
class RecordA
has_many :recordbs
end
class RecordB
belongs_to :recorda
end
RecordA has many recordbs but only one of them may be an acti …
0
votes
1answer
77 views
rails has_many - too many queries
I have 4 models, Message, Group, User, Membership
class Group < ActiveRecord::Base
has_many :memberships
has_many :users, :through => :memberships
has_many :groups_mes …
1
vote
1answer
336 views
Polymorphic has_many self-referential
Hello there,
I am having trouble getting this to work.
My problem is. I have A number of models (Article, Video, Photo)
Now I am trying to create a related_to association, such …
0
votes
1answer
146 views
How to save an associating record between has-many classes in Ruby on Rails
I've created three classes to represent Books, People, and BookLoans. While I am able to show the association of People to Books through BookLoans I've been seeding my database.
I …
0
votes
2answers
93 views
Has_Many, Belongs_To Relationship in a Database Driven Application
I am working on an an application that allows a user to search for a particular book on Amazon using a given search criterion (e.g. title, keyword, author.) I am currently attempti …
0
votes
1answer
96 views
Complicated named_scope: Find users who don’t belong to a certain project
I'm trying to create a named scope like User.not_in_project(project) but I can't find the right way.
I have Users, Projects and Duties as a join model:
class User < ActiveReco …
4
votes
5answers
533 views
How do I pass a string to a has_many :finder_sql parameter?
In my application, a user has_many tickets. Unfortunately, the tickets table does not have a user_id: it has a user_login (it is a legacy database). I am going to change that som …
0
votes
2answers
169 views
Undefined method when accessing through association and uninitialized constant when trying to destroy with :dependent => :destroy
Hello. I've tried persistently googling this error, but to no avail. I currently have these models
app/models/survey.rb
class Survey < ActiveRecord::Base
belongs_to :user
…
