0
votes
1answer
12 views
link_to issue with inherited Active Record class.
Here are the classes as I have them set up:
class Stat < ActiveRecord::Base
belongs_to :stats_parent
end
class TotalStat < Stat
belongs_to :stats_parent
end
#The S …
0
votes
2answers
27 views
How to set Default format for activerecord fields of type string?
Here's an easy one:
How do I go about setting the default format for a string field in ActiveRecord?
I've tried the following:
def phone_number_f
"...#{phone_number}format_her …
2
votes
3answers
25 views
Rails ActiveRecord: Locking down attributes when record enters a particular state
Wondering if there’s a plugin or best way of setting up an ActiveRecord class so that, for example, when a record enter the "published" state, certain attributes are frozen so th …
0
votes
1answer
27 views
Ruby on Rails ActiveRecord Validation
I would like to validate attributes in a function like this
class User < ActiveRecord::Base
validate :check_name( :name )
def check_name( name )
... if name is invali …
0
votes
1answer
12 views
Equivalent of SqLite Blob type in Subsonic?
Hi
In one SqLite table, I have a BLOB column for saving images (or binary data as a matter of fact). The table is Documents.
Strangely, in Subsonic's ActiveRecord's Documents clas …
0
votes
2answers
51 views
insert a value into an integer column without updating it, but adding it’s contents.
hello i have:
ActiveRecord::Base.connection.execute "UPDATE ventas SET costo_de_compra = #{@nuevo_costo} WHERE id = #{@vid};"
but this updates that column value every time it's …
0
votes
2answers
31 views
Order products by association count
Hello everyone i have
Class Product
has_many :sales
end
Class Sale
belongs_to :product
end
How do i get the most sold products.. (Product find all.. order by .. ventas..) ? …
0
votes
1answer
20 views
ROR ActiveRecord attribute handling with a callback before_update
This code produces an ActiveRecordError:
Callbacks must be a symbol denoting
the method to call, a string to be
evaluated, a block to be invoked, or
an object responding …
0
votes
1answer
29 views
Filtering ActiveRecord queries by multiple unique attributes and combining results
In my rails project, I have a query which finds the 10 most recent contests and orders by their associated poll dates:
@contests = Contest.find(
:all,
:limit => "10",
:includ …
0
votes
2answers
21 views
using a non-integer id column in ActiveRecord
Are there any gotchas to using a non-integer column for the id in an ActiveRecord model? We're going to be using replicated databases, with copies of a Rails app writing to those …
1
vote
4answers
37 views
Keep record of deleted items
Hello i have a rails app that handles sales, right now, what i need is to be able to delete the sale in order to keep accounting clear, but log somewhere else, the details of that …
0
votes
2answers
37 views
When do I use save!, create! and update_attributes! in Rails?
I'm trying to figure out when to use the bang! versions for saving and updating records? I've read and heard that you don't need them if you're just saving one record or updating a …
0
votes
2answers
49 views
Unfortunately this works: ROR Comparison in Activerecord - update.
Unfortunately this mess works: Do you have suggestings for cleaning up this code: I'm trying to use a activerecord to compare two table columns, "needed" and "amount" then update a …
0
votes
2answers
56 views
Load Ruby on Rails models without loading the entire framework
I'm looking to create a custom daemon that will run various database tasks such as delaying mailings and user notifications (each notice is a separate row in the notifications tabl …
2
votes
3answers
55 views
Using includes / joins
I have a Proposal model and a Signature model.
Proposal has many signatures and Signature belongs to proposal
My relationships work fine when I select a single Proposal, but when …
