0
votes
2answers
37 views
Automatically set child.parent_id when parent.children<< child ?
How to do that with ActiveRecord? My code:
p = Product.create
l = Label.create
p.labels.add << l
But I get l.parent == nil
create_table "labels", :force => true do …
2
votes
3answers
54 views
How to use common named_scope for all ActiveRecord models
Hi how to build a named_scope which will be common for all models.
0
votes
1answer
18 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
…
1
vote
1answer
45 views
ActiveRecord finding existing table indexes
I am writing a migration generator for a plugin I am writing and I need to to be able to find what unique indexes a table has so I can modify existing unique indexes to become a co …
0
votes
2answers
35 views
ActiveRecord, has_many :through, and Polymorphic Associations
Folks,
Want to make sure I understand this correctly. And please disregard the case for inheritance here (SentientBeing), trying to instead focus on polymorphic models in has_many …
0
votes
4answers
26 views
ActiveRecord.find(array_of_ids), preserving order
When you do Something.find(array_of_ids) in Rails, the order of the resulting array does not depend on the order of array_of_ids.
Is there any way to do the find and preserve the …
1
vote
2answers
34 views
“Integration” between Rails’ ActiveRecord and Java’s Hibernate
Hi everybody: let me do a bit of "concept mining" here: I am involved in mantaining/extending an application whose functionality is distributed across several servers. For example, …
3
votes
2answers
57 views
Rails: searchlogic search with or conditions
Hello,
I'm using the 'binarylogic-searchlogic' gem in version 2.3.5 along with Rails 2.3.4.
What I want to do is performing a search on a model for a specified value over multip …
0
votes
1answer
15 views
Rails: form.error_messages does not wrap custom validated fields in a fieldWithErrors div
I have a model that uses the low level validate_on_create method, based on a simple condition I'm adding an error message to the field, e.g
self.errors.add(:expiry_date, "is too s …
1
vote
0answers
12 views
How can I make an aggregated property support ActiveRecord::Dirty semantics?
I have an aggregated attribute which I want to be able ask about its _changed? ness, etc.
composed_of :range,
:class_name => 'Range',
:mapping => [ % …
0
votes
2answers
34 views
how to insert into multiple tables in rails
Hi all,
i am trying to insert into multiple tables using rails..
i have a table called users and services.
when i create a user the user details should go into users and a service …
0
votes
4answers
49 views
How to handle Ruby on Rails error: “Please install the postgresql adapter: `gem install activerecord-postgresql-adapter’”
Running a Ruby on Rails (RoR) app or Ruby code which uses the ActiveRecord framework, you get the error message:
Please install the postgresql adapter:
gem install
activere …
0
votes
3answers
21 views
varchar Migration question for Ruby on Rails
I have created a new table including a column "note". The default is varchar(255) I believe but I wish to have this column be a text area vs. a field and to allow more data. I imag …
2
votes
2answers
28 views
How to make ActiveRecord work with legacy partitioned/sharded databases/tables?
Hi all,
thanks for your time first...after all the searching on google, github and here, and got more confused about the big words(partition/shard/fedorate),I figure that I have t …
1
vote
2answers
23 views
Condition on a sub table in rails
Hello
I have no good title for this question, but my problem is to set a conditon for my sub-table in rails
I have a model named "users" and another named "hours", hours is set to …
