Tagged Questions
0
votes
2answers
33 views
Rails dynamic foreign key for has_many relationship
I have a User model that's used to hold all Users. There's two types on users in my apps, mentors and students, but they have the same structure.
I want to do something like this.
has_many ...
0
votes
2answers
55 views
Remote data model in Rails
i have model with validations, some methods, filters and so. Unfortunately the data are from API, so i need to overload the method which is pull the records from DB. Which method is that?
So far i ...
3
votes
4answers
113 views
Rails - Where (directories) to put Models that are not Active Record
We are building out apps that have Models that are not database components.
We are curious to learn what others are doing in the rails community to address this subject.
We are struggling with where ...
1
vote
2answers
21 views
undefined method for _path, but route exists
I am getting a Rails error when i create a new "car_image"... the AJAX response is
undefined method `car_image_path' for #<CarImage:0x007fdbb1b79258>
Route defined
resources :car_images, ...
1
vote
1answer
44 views
Rails: can a model have no attributes?
I currently have two models, User and Company. I'm thinking of making a 3rd model that would act as a parent to the other two, and it would be like this:
Account
- Company
-- User(s)
The only ...
0
votes
1answer
71 views
Using Yii active record to read multiple rows from DB
I would like to be able to read multiple rows using the Yii framework without having to create multiple model objects. With that In mind, I'm setting up a CDbCriteria with a condition of the form ...
1
vote
1answer
38 views
Execute method on mongoid scope chain
I need to take some random documents using Rails and MongoId. Since I plan to have very large collections I decided to put a 'random' field in each document and to select documents using that field. I ...
0
votes
0answers
17 views
Strange ActiveRecord bug with join table (Postgres)
I came upon this bug when trying to make a Kickstarter clone for fun. My model for the join table does not work when called directly. When I try it in rake console, I have to type in the plural ...
0
votes
2answers
29 views
Ambiguous table reference
This problem seems fairly simple, but I've never encountered one like this.
Here are the settings:
Post has_many :reader_links
Post has_many :readers, :through => :reader_links
I need to find ...
1
vote
2answers
61 views
Inserting Multiple Records at a time into Model [duplicate]
I am looking for some best practices when it comes to inserting data into a model, especially when there are a lot of records to be created, so far I am retrieving some XML and saving it into a model
...
1
vote
2answers
53 views
Dynamic associations with Rails?
I am a little bit confused in defining the model design for the current project I am working on.
It's a sport team management app, so I can have teams from different sports adding players. Since for ...
3
votes
2answers
65 views
Rails STI model without a table on migrations
I've got a model, say User, and a model Admin which inherits from User. I have some code in lib folder which uses those two models. But if I install a new database and try to run the migrations rails ...
1
vote
1answer
19 views
Rails find_by_sql to find a self referential subset of the model
I have a simple relationship:
class Organization < ActiveRecord::Base
belongs_to :parent_organization, class_name: 'Organization'
end
So an organization can be related to another organization ...
1
vote
1answer
38 views
Save contents of a hash to a model
Slowly getting there with what i am trying to achieve. I am grabbing data via screen grab and want to save the data to my model, i have two columns, home_team and away_team. So far i grab the data.
...
0
votes
3answers
109 views
codeigniter pass variable from controller to model
simple issue I presume.
My controller is getting the if to display from the url using $this->uri->segment(3). This will always be a single value. I am putting this in an array to pass to the ...
0
votes
3answers
193 views
Save and Update in a controller together in Yii
There are two tables in my db, users and profile. Profile has user_id as a primary key. Every user can have only one profile. When I upload a image file its name is stored in profile table with that ...
0
votes
1answer
62 views
Rails 3 - Calculate model's attribute based on associated model's attribute [closed]
I have three models - Usage(month, elec, gas), Project(project_type, date_implemented, manual_elec_savings, manual_gas_savings) and monthly_project_savings(elec, gas, usage_id, project_id).
The ...
0
votes
2answers
54 views
Change validation error message globally in Rails 3
I'm looking for a clean way to change a validation failure message globally throughout all models, all attributes, etc.. in a Ruby on Rails 3 application. Something like changing "can't be blank" to ...
0
votes
1answer
32 views
Is there a database modeling library for PHP that I can use as third party that supports generating models from tables? [closed]
I have an old php project that is written procedural. I'm looking for a library that can generate models from mysql database tables, so that I can use them as objects in the code and avoid lots of ...
0
votes
0answers
47 views
Rails model cross field validation
In Ruby on Rails application, I am trying to validate a field based on a method which takes as parameter another attribute of the record.
Here is the scenario:
In the Product model, I want to accept ...
0
votes
1answer
33 views
Unique model field at databse level in Rails 3.1+ migration?
Is there a way to specify a database level uniqueness constraint on a field in a Rails 3.1+ migration? I know ActiveRecord's validates_uniqueness_of would work, but I'm curious to know if this can be ...
0
votes
0answers
30 views
Ruby on Rails - Copy model activated by button and selection with checkboxes
Currently I have the following situation:
Code of the index.html.erb:
<%= form_tag order_path, :method => 'get' do %>
<p>
<%= submit_tag "Historical Search", ...
0
votes
1answer
45 views
Rails 3 - How can I visit parent's attributes in belong_to/has_many relationship?
I have a simple question in Rails 3 model:
Here are the models I have:
class Order < ActiveRecord::Base
attr_accessible :customer :date #blahblah..
has_many :items
...
0
votes
1answer
15 views
How do you access inner relations in rails active association?
I have my associates set up in this manner.
event - (has_many) - vendor - (has_many) - product - (has_many) - productTags - (belongs_to) - tags
I'm trying to retrieve an array of tags for an event ...
2
votes
2answers
36 views
How to have an ordered model association allowing duplicates
I have two models, Song and Show. A Show is an ordered list of Songs, in which the same Song can be listed multiple times.
That is, there should be an ordered array (or hash or anything) somewhere ...
0
votes
3answers
320 views
Zend Framework Model, Active Record pattern alternative
I'm writing some code that allows users to read reports on a site, using AJAX calls to dynamically load only what is requested, instead of the entire 15+MB report.
I'm writing a Model to access all ...
0
votes
0answers
56 views
ActiveRecord behaviour for Json Fields
I am building an abstract table model for tables in PHP. The thing is due to
need of flexibility, I store a field in table as JSON field. So I can keep
flexible data in the.
While I am defining the ...
0
votes
2answers
65 views
Model creation depends on other model creation
I have an Item model:
class Item < ActiveRecord::Base
attr_accessible :author, :title
end
And a Book model:
class Book < ActiveRecord::Base
attr_accessible :item_id, :plot
belongs_to_ ...
3
votes
1answer
159 views
How to get records from multiple condition from a same column through associated table
Let say a book model HABTM categories, for an example book A has categories "CA" & "CB". How can i retrieve book A if I query using "CA" & "CB" only. I know about the .where("category_id in ...
0
votes
1answer
112 views
Calling method to provide search parameters in Rails model
I've got a Rails controller with the following pieces:
def search
...
@player_to_team_histories = @player_to_team_histories.order(sort_column + " " + sort_direction)
...
sort_column and ...
0
votes
2answers
118 views
How to define form select values via model in Rails?
I created a simple model called Categories, which is connected to Platforms model.
class Platform < ActiveRecord::Base
attr_accessible :name, :url, :country, :categories
belongs_to ...
0
votes
1answer
226 views
Yii Model class column attributes do not match
How can Active Record attributes be different than in a model class?
I have a User model in which there is a column from database named dob. I wont be accepting dob as a whole from user hence the ...
2
votes
1answer
61 views
Triggering dependent: :destroy with overridden destroy-method
In our application we've overridden the ActiveRecord destroy method so that our records do not get deleted (so the user can undelete). Like so:
def destroy
self.is_deleted = true
self.save
...
1
vote
3answers
107 views
Displaying associated records in rails
I have a User, List, and Task models.
A task belongs_to user and list, a list has_many tasks and belongs_to user, and a user has_many list and has_many tasks.
I have part of what I want to display ...
0
votes
1answer
2k views
Yii - multiple records in one form submission
Does anyone know how to add multiple records using just one form in Yii? All the records belong to the same model and are of the same format.
Many thanks,
Nick
0
votes
1answer
90 views
complex find SQL using active record to associate records from two different tables with has_many relationship
I have been looking up the web to find a solution but to no avail. I am working on a problem where we have two tables in a has_many association, here are the model names
class Employee < ...
4
votes
2answers
130 views
What is the “rails way” to access a parent object's attributes?
Let's say I have a model Doctor, and a model Patient. A Patient belongs_to a Doctor.
A Doctor has an attribute office.
I would want to, given a Patient p, be able to say p.office and access the ...
0
votes
3answers
131 views
Rails ActiveRecord implementing relationship
Help me out with a db migration and model in Rails, I tried searching for self referencing and what not, but I can't make heads or tails.. I'm stuck, so to say..
Basically I want two models, User ...
0
votes
0answers
82 views
Rails 3 - undefined method `last_request_at' for Assignment
I use Authlogic for authentication users + Omniauth for social authentication.
After creating new account for user, who signed up with Facebook, I want to set up his role in the system.
user model
...
0
votes
1answer
88 views
Rails - how to instantly get id of inserted row
I use this logic in my app:
controller
@current_user = User.find_or_create_from_oauth(auth_hash)
user.rb
def self.find_or_create_from_oauth(auth_hash)
provider = auth_hash["provider"]
...
0
votes
2answers
48 views
How to model a User, Coach relationship?
In the real world, let's say you have athlete's and coaches.
In the Model I have a User. The user is the athlete. Now a user may also be a coach to any other user. How would you model this in the ...
0
votes
2answers
237 views
rails pass variable to model from controller not working
Im trying to pass a variable from controller to my form to no avail :(
Its working in another controller but cannot make it work for new user registrations :(
def update
@profile = ...
0
votes
1answer
124 views
In Ruby on Rails models, why is presence validated on associations but uniqueness validated on foreign keys
I have a model with a foreign key. Even though there's a database constraint preventing a duplicate user_id from entering SomeClass's table, I'm repeating (pre-empting, really) that validation in the ...
0
votes
1answer
18 views
How would I design my model in Rails where two attributes access the same class?
I've created a Team model that has the following attributes:
team_name
mascot
I now want to create a Game model with the following attributes:
game_date
away_team
away_team_score
home_team
...
0
votes
1answer
154 views
Check mysql connection to remote host
I have model to store database connection parameters (host, database name, username, password) and filling it by form. Before create or update I need to check if connection be good with entered ...
3
votes
2answers
1k views
Update db/migrate after manually updating models?
For example i have this model:
class Product < ActiveRecord::Base
attr_accessible :name, :order
end
Then when i did rake db:migrate it created this ...
0
votes
3answers
912 views
My Model (by Jamie Rumbelow) - how to use 'where' with the model
I have integrated the Jamie Rumbelow My Model for doing active record queries with codeigniter from github - https://github.com/jamierumbelow/codeigniter-base-model
I'd like to use the normal ...
1
vote
1answer
67 views
Atypical association of three models
I'm writing an app about fishing.
We have a fish model that contains some species.
We have a location model that contains fishing spots.
We have a technique model that contains some fishing ...
0
votes
1answer
369 views
Rails - EAV model with multiple value types?
I currently have a model Feature that is used by various other models; in this example, it will be used by customer.
To keep things flexible, Feature is used to store things such as First Name, Last ...
0
votes
2answers
143 views
Ruby on rails model method is not getting executed in controller
posts_controller.rb destroy method
def destroy
if !request.xhr?
render_404
return
end
if user_signed_in?
if Post.exists?(:post_id => params[:id])
...



