0
votes
0answers
9 views

Get belongs_to parent object of an unpersisted parent

I have a ProductPrice, Product and Menu Product belongs_to Menu and ProductPrice to Product. I'm creating the Product with prices in one time through cocoon nested objects. In ProductPrice I have ...
0
votes
2answers
18 views

How do you save an attribute to the database that is not coming from the form params?

I am basically trying to save a key that I am generating in the model. It is not something the user is filling out in a form. I keep getting the error when I go to /model/new undefined method ...
0
votes
1answer
27 views

Rails before_save not called

I have an ActiveRecord model 'offer' that belongs to 2 instances of item. Item belongs to user. The offer model has the following: offered_item_id receiving_item_id offering_user_id ...
0
votes
1answer
14 views

Building in model callback returning nil for value

First, thanks for taking the time to read. I'm new to Rails and have been stuck on this one for many hours. In my Rails 3.2 app, I have three models: User, Organization, and Membership (the last is a ...
0
votes
1answer
18 views

Complex SQL converted to active record

I have been puzzling over the following query, and how it could be done using active record. select * from links where id in (select id from (select votable_id as id, count(votable_id) ...
2
votes
1answer
12 views

Rails: before_destroy not updating parent

In my rails app, I have a Donation model, which has an attribute called status (an integer) and a child model called Delivery. A donation has_one delivery. In the delivery model, I have callbacks ...
0
votes
0answers
16 views

Insert join table records only from form

I am trying to create a form in Rails that will insert only records into a joiner table. The two other models (People,Projects) already have records. Models: class Project < ActiveRecord::Base ...
0
votes
1answer
14 views

Trouble deleting ActiveRecord object, foreign key constraint fails

Rails 2.3 What I've tried... >> Import::Subscription.all(:conditions => ["account_id = ?", "44"]).destroy_all NoMethodError: undefined method 'destroy_all' for #<Array:0x106ab4d78> ...
1
vote
1answer
42 views

Overide ActiveRecord ID

in my Rails 4 app i would like to override Active Record to create records with ids that have 7 digits of random numbers. Such as 4526378 instead of 1. I found a way to do this but im not sure its the ...
0
votes
0answers
8 views

Grouping by multiple values with activerecord and getting information about other tables

I need to join 3 tables: issues with journals and journals with journal_details. Group by two columns of the last table and get info from second and third table. Here's the way I've managed to do ...
0
votes
1answer
10 views

Eager loading conditional associations

I have the following class: class Car < ActiveRecord::Base has_many :adverts, :dependent => :destroy has_many :active_adverts, :class_name => 'Advert', :select => "adverts.id, ...
1
vote
1answer
20 views

ActiveRecord ConnectionPool - exception handling?

I am using ConnectionPool to check out/in db connections. So if there's no exception, everything works as expected. A connection is checked in at the end. But what if there's an exception in the ...
0
votes
1answer
16 views

Runoff-style voting using Rails/ActiveRecord

I'm working on a website for a "runoff election"-style contest, i.e. voters can vote for multiple candidates, but voters can only vote once for any individual candidate. My models are: candidate ...
0
votes
0answers
10 views

rails insert run mysql specific commands

I have a rails app where I need to run AES_ENCRYPT on a particular field, when I create a new row. Is it possible to do something like self.field = "AES_ENCRYPT(#{self.field}, #{key})"? Also, I need ...
2
votes
1answer
26 views

Understanding the save method and what it returns

I have a method that contains the following code. def save_question(content) question = Question.new question.content = content question.save end When I run this in an if statement if ...
0
votes
2answers
13 views

Rails 3 - How to do a find_all_by with a single exception (removing a single record from the resulting array)?

I have a case where I must use find_all_by; I have a cookie session hash which is limited in size (4kb), so instead of storing the records I need themselves, I'm storing just the IDs in an array. ...
0
votes
3answers
31 views

Rails ActiveRecord: Multiple conditions in find

This might be more of a Ruby syntax thing than anything else. I'm having difficulty getting two limiting conditions on a SomeObject.find going. Separated, the conditions seem to work: if search != ...
0
votes
1answer
16 views

rails migration - update column with constraints

How to add new column and update its value from another table's column with conditions ? I'm having two tables named user id: integer name: string preferred_communication_channel_id: integer // ...
-2
votes
1answer
23 views

How to add methods to has_many relationship on runtime

I'm trying to add belatedly methods to has_many relationships, and I don't want to do it neither in build time (:has_many panties do ... end ) nor I want to do it for a certain scope (I want it to ...
1
vote
2answers
29 views

Rails optional belongs_to

I'm writing a Rails frontend for inventory management. I want users to be able to register products, so I have: class User < ActiveRecord::Base has_many :products # <snip> end and ...
0
votes
1answer
44 views

Rails 'includes' and 'where' with belongs_to association

I have 2 models: PassportVisa and Country. Country Model class Country < ActiveRecord::Base attr_accessible :iso, :name has_many :passport_visa, foreign_key: :country_id end PassportVisa ...
0
votes
1answer
74 views

model has_many users(of a specific role type)

I have a pretty standard devise user model schema with roles and a many to many model for userRoles: #teacher or student create_table "roles", :force => true do |t| t.string "name" end ...
0
votes
2answers
44 views

Object doesn't update when I save

I am probably missing something obvious, but when I try to save an object, it doesn't update in the database. I can insert objects. Here are my models. I can do everything correctly on the User ...
0
votes
2answers
25 views

failure with belongs_to active record association - id returns nil

I think I know what the problem is here, but I can't seem to figure out how to fix it. here are my models User class User < ActiveRecord::Base attr_accessor :password attr_accessible ...
1
vote
2answers
22 views

Rails - check column with another column of same table

In my Rails(ActiveRecord) application, I have a table subscription with 3 column created_at,duration,interval Given an example | created_at | duration | interval | | 22-5-2013 | 1 | ...
1
vote
1answer
15 views

Updating named_scope :all for new ActiveRecord format

I have been upgrading named scopes to scopes following this guide http://m.onkey.org/active-record-query-interface. The one thing I have run into in the code I am working with that I have not seen in ...
0
votes
2answers
18 views

Handling ActiveRecord Results - No Record Found

How can I prevent my controller from throwing errors when an ActiveRecord query does not return a result? ActiveRecord::RecordNotFound in PasswordResetsController#edit Couldn't find User with ...
1
vote
2answers
35 views

How to edit Rails serialized hashes in a form?

I have a model in my Rails app for a Bulletin, and when it is created, a lot of the values are stored in the database as serialized hashes or arrays, to be accessed later. I'm trying to create an edit ...
0
votes
1answer
20 views

Ruby on Rails: Do not use database for specific environment

How can I disable the use of a database within a specific environment. I want an environment to purely serve images which does not require a database. A different environment will do the file ...
0
votes
1answer
14 views

detect the need of ActiveRecord eager load

Is there any tool/automation which will identify the need of ActiveRecord eager load and warn the same. Can any fix to ActiveRecord fix it?
0
votes
1answer
35 views

Is there a better way to structure these database tables?

I'm struggling with the best way to design/query my db on a new Rails app. This is what I have in place right now: documents: title has_many :document_sections document_sections: belongs_to ...
0
votes
1answer
57 views

When is scope resolution necessary in Ruby (ActiveRecord)

Anyone have any idea what might be happening in this situation? Why is using self.class or scope resolution ::MyModel necessary? class MyModel < ActiveRecord::Base belongs_to :other_model ...
1
vote
3answers
42 views

Check if record exists from controller in Rails

In my app a User can create a Business. When they trigger the index action in my BusinessesController I want to check if a Business is related to the current_user.id: If yes: display the business. ...
0
votes
1answer
33 views

Retrieving field params field in rails

I have been trying to analyze this problem very closely but I am still yet to find a good way to approach it. (Hope my explanation is good enough) So I have three models [user, status and milestone] ...
0
votes
2answers
41 views

How to test model's callback method independently?

I had a method in a model: class Article < ActiveRecord::Base def do_something end end I also had a unit test for this method: # spec/models/article_spec.rb describe "#do_something" do ...
0
votes
1answer
16 views

ActiveRecord model subclass NoMethodError on 'create'

I've got a Rails 4 beta app (on Ruby 2) and I'm getting an error I can't make sense out of. I've got some specs that are failing because my model class has no method 'create', even though I'm ...
0
votes
1answer
22 views

AND multiple JOIN statements in Rails

I have a table for users and roles. I'm using a has many through relationship. I am trying to create a query that will find users that have all of the roles in an array. ex. role_ids = [2, 4, 6] ...
0
votes
2answers
26 views

How to override default foreign key?

I have has_many and belongs_to association between two models as below: class Section < ActiveRecord::Base self.primary_key = 'id' has_many :rights end class Right < ActiveRecord::Base ...
0
votes
3answers
28 views

How to exclude a collection of records with ActiveRecord?

I have the following: = select :client, :id, User.all.map {|u| [u.username, u.id]}, include_blank: "Add a client by username" I'd like to exclude all records from User.all that match ...
0
votes
0answers
12 views

activerecord equivalent of mysql date_format

I'm using Rails Activerecord and have a query like: MyModel.all(:select => 'date_format(created_at, "%Y-%m-%d") as d') This works fine with mysql, but throws an error with sqlite because the ...
-1
votes
0answers
22 views

How to assign foreign key

I have the following association set between SECTION AND RIGHT class Section self.primary_key = 'id' has_many :rights, :foreign_key => 'section_id' end class Right belongs_to :section end ...
2
votes
3answers
74 views

Unexpected ',' expecting ')' in update_attributes - Rails

I'm trying to make a Migration but I'm having some troubles. When I try to run "rake db:migrate" on Heroku I got an error message. Now I discover in my localhost that my code in the migration has ...
1
vote
4answers
42 views

Ruby on Rails: Fetch database result and search through results

I have a set of IDs for a table called "brands". I want to fetch the name column for each record in the brand table without having to re-query the database using Brand.find(brand_id). Instead, is ...
0
votes
2answers
59 views

I can't make Active Record simple query

This: User.where 'id < ?', 5 fails with this message: NoMethodError: undefined method `join' for #<Class:0x007fa4c9b5a598> When I try: User.where 'id < 5' it works. In another ...
0
votes
2answers
50 views

Has_one association confusion, I want it reversed

I'm pretty new to rails and lately I found that I understood activerecords has_one association contrary to how it actually works. Refering to the example from rubyonrails guide I imagined that it is ...
0
votes
1answer
26 views

ActiveRecord joins: integer columns converted to strings

I have a model named Article, which I am joining with TwitterShare as shown below: articles = Article.joins("LEFT OUTER JOIN twitter_shares ON articles.id = ...
2
votes
2answers
24 views

render ActiveRecord response in from Controller to View

I'm new to Rails. I'm using Rails 3.2.13. I'll try to keep my question succinct: In my controller, I want to get the last 10 entries from the Observation table. I have: def index @times = ...
2
votes
2answers
63 views

How to validate parent-child relationships in Rails?

I have a Category model which can have multiple parent and child categories. I have modelled this using a Hierarchy model which contains parent_category and child_category attributes. I can validate ...
0
votes
1answer
38 views

How to find related records in Ruby on Rails?

I have this class: class Invoice < ActiveRecord::Base has_many :payments def payable? amount_payable != 0 end end How can I get the total of all payments whose invoice is payable? ...
0
votes
1answer
21 views

ActiveRecord find with joins and associations?

I have a model TwitterUser that has_one website as shown in the model below: class TwitterUser < ActiveRecord::Base has_one :website, :foreign_key => :id, :primary_key => :website_id end ...

1 2 3 4 5 153