Tagged Questions
The rails-models tag has no wiki summary.
8
votes
4answers
790 views
In Rails, how should I implement a Status field for a Tasks app - integer or enum?
For a Rails 3.0 Todo app, I have a Tasks model with a Status field. What's the best way to store the Status field data (field type) and still display a human-readable version in a view (HTML table)? ...
3
votes
2answers
59 views
From Django to Rails, How do you continually work with rails models?
Recently I converted from django development to fulltime rails work, it is a fairly small shop and I'm picking things up from books and on my own as I go.
Last week I was hit with a major blow to my ...
3
votes
3answers
1k views
has_one and has_many in same model. How does rails track them?
I a little confused about how this work even if it works properly. I have a model that has two association to the same other model.
Company has an owner and company has many employees of the class ...
2
votes
2answers
84 views
How to add sequences to a migration and use them in a model?
I want to have a "Customer" Model with a normal primary key and another column to store a custom "Customer Number". In addition, I want the db to handle default Customer Numbers. I think, defining a ...
2
votes
1answer
73 views
CouchRest Model use a custom value instead of guid for _id field
I wonder if there is a way to use a custom string value (e.g. name of the object) as the _id field instead of a guid in CouchRest Model.
E.g.
class Cat < CouchRest::Model::Base
property :name
...
2
votes
1answer
108 views
Ruby on Rails: How to model a “user favorite model”
I'll use StackOverflow as my example. Let's say I have a Question model. A logged in user can "star" a Question to mark is as one of their favorites. In the database, this sort of thing would probably ...
2
votes
1answer
60 views
Create a model that is related to 2 other models using Rails
I have models like that:
class Person
has_many :groups
has_many :group_memberships, :foreign_key => "member_id"
end
class Group_Membership
belongs_to :member, :class_name => 'Person'
...
2
votes
3answers
1k views
nested has_many :through in rails 3
I know Rails doesn't support nested has_many :through relationships, though there's been talk and an open ticket about a patch since as early as Rails 2.
I did come across a plugin that's pretty ...
2
votes
2answers
149 views
Validation on model with 'intentional' invalid data
The data source I am working with is terrible. Some places where you would expect integers, you get "Three". In the phone number field, you may get "the phone # is xxx". Some fields are simply blank.
...
2
votes
3answers
305 views
Only one instance of a Model in Rails
I'm working on my first Rails app. It needs to store some information about a single advertisement that will appear on every page. The admin just needs to be able to set the URL, Title, and an image. ...
1
vote
3answers
51 views
Rails associations - how can I set up associations for different varieties of users?
I'm creating a web app which consists of schools, courses, students, and teachers.
A school can have many courses and a course has one teacher and many students.
The problem I am running into is ...
1
vote
1answer
54 views
Correct design: a Post can have one User (author) plus many Users (tagged users)
I have a situation where I'm getting a bit stuck.
A Post can have a User (as an author), and a Post can also have many Users (as a post can have other users tagged in it).
In my Post model:
...
1
vote
1answer
78 views
How to add property in module in Rails CouchRest Model to support multiple inheritance?
In my class, I want to include multiple modules. Each module can
define its own property to persist in couchDB.
Here is an example:
module Owner
property :name
end
module Animal
property :type
...
1
vote
3answers
332 views
I'm gettgin No route matches {:action=>“new”, :controller=>“posts”} even though it's not in my routes.rb file. HELP?
OK so this is my first question posted to stackoverflow. I'm pretty new to coding, been learning Ruby on Rails for the past 3 months. There could be a few things wrong with my code but here it goes.
...
1
vote
1answer
54 views
Rails - Big vs Distributed Tables
I am relatively new to Rails.
I have a User model through Devise. I am wondering if it is more efficient to have all the additional fields i need for the user, in a separate Profile model.
I am ...
1
vote
1answer
48 views
How does rails come up with the ID for a new model/record?
How does activerecord assign an ID to a newly created record? The ID values seem to be all over the place. Sometimes they are sequential, but sometimes they seem to be some kind of a hash.
Is there a ...
1
vote
1answer
72 views
cross model scoping - rails 3
I want to create a scope for all Posts without comments... I do not understand how, in the model (by creating a scope), I can check if my Post has any Comments attached to it as only the Comments seem ...
1
vote
4answers
67 views
rails don't find the attribute
I have this model
#post.rb
class Post < ActiveRecord::Base
belongs_to :user
after_initialize :create_token
attr_accessible :token
protected
def create_token
self.token = ...
1
vote
1answer
117 views
Rails 3 model with belongs_to different tables exclusively in each record
I have some models like these:
class Alpha < ActiveRecord::Base
has_many :items
end
class Beta < ActiveRecord::Base
has_many :items
end
class Item < ActiveRecord::Base
belongs_to ...
1
vote
2answers
142 views
Rails Models relationships
Hello fellow developers!
Recently I've been playing with Rails 3.0 and after quite a bit of research I'm kinda stuck.
I want to know what approach or solution is the best in my case(I couldn't find an ...
1
vote
2answers
20 views
Joining 2 model's data together and ordering them by common column?
I have 2 models that I am interested in merging and then ordering them by the created_at column. One of the models is photos and the other one is statuses. Currently, I have two tabs, photos and ...
1
vote
1answer
29 views
Rails - Problems using Edit
I'm having problems trying to edit a model. I always end up getting as error
undefined method `model_name' for NilClass:Class
I'm using in the view:
<%= form_for(@book) do |f| %>
and on ...
1
vote
0answers
55 views
How can I make elegant associations between two models, where one “has many” different versions of the other (in Rails 3)?
What I'm trying to do is the following:
1. I have users who are able to create challenges.
2. However, they
can also accept and complete
challenges created by other users.
Currently my ...
1
vote
2answers
75 views
query in rails3
In another question that i asked recently i got a really good answer and the code worked... But i do not know exactly why it works... Now i have a similar problem, but don't know how to solve it...?
...
1
vote
2answers
137 views
rails3 model question
i moved from php to rails3, and i still think it was a good decision! Anyway I have some models:
users
questions
answers
question_id
votes
user_id
answer_id
model for users:
has_many :questions
...
1
vote
1answer
160 views
Rails model references question
class CreateMatches < ActiveRecord::Migration
def self.up
create_table :matches do |t|
t.integer :result_home
t.integer :result_away
t.references :clan, :as => :clan_home
...
1
vote
1answer
131 views
How do I model a table tennis match in rails
I am attempting to model a table tennis match in rails. Here is what I have:
Game Model:
team_1_score
team_2_score
team_1_id
team_2_id
Team Model:
game_id
player_id
Player Model:
Name
So each ...
1
vote
5answers
119 views
How to setup default attributes in a ruby model
I have a model User and when I create one, I want to pragmatically setup some API keys and what not, specifically:
@user.apikey = Digest::MD5.hexdigest(BCrypt::Password.create("jibberish").to_s)
I ...
1
vote
2answers
91 views
Why is my model firing the validation at the wrong time?
In my edit action of my employees_controller I have this line of code:
#Employee#edit
69: if @employee.user.person.addresses.length == 0
70: @employee.user.person.addresses << Address.new
71: ...
1
vote
2answers
162 views
Rails Model Associations for Item-Item Relationship?
Looking for some guidance on the best way to implement this scenario:
I have an items table (of products) and want to support the ability to cross-sell / up-sell / complement items. So there is an ...
1
vote
1answer
46 views
Importing redefined SQL data from old app to new one
I've nearly finished rewriting (with some new features) my Symfony (left a bit bad taste in mounth) application into Rails. There is some amount of data which I need to import from my old application ...
0
votes
1answer
30 views
RAILS User heirarchies; classes, associations. Polymorphic?
I'm amazed at how hard it is to still find a definitive answer to this: it seems so common that I must be looking at it all wrong.
We have Users, who's authorization roles run something like
...
0
votes
1answer
40 views
uninitialized constant User::relationship using @blog.user.followers.build
The below code works without error:
= form_for @blog.comments.build, :remote => true do |f|
However the below results in the error "uninitialized constant User::relationship":
= form_for ...
0
votes
0answers
42 views
Rake task to access models
I'm trying to access a model called Book from a rake task like so
task :create_epubs => :environment do
include Rails.application.routes.url_helpers # brings ActionDispatch::Routing::UrlFor
...
0
votes
1answer
34 views
How can I associate students to the school through two levels (courses and course sections) in rails 3.1?
A school has many courses. A course has many sections. A student enrolls in a section of a course. I want to be able to find all the students at the school.
Class School < ActiveRecord::Base
...
0
votes
0answers
13 views
rails associations — can I use :through multiple times?
Can I do something like this?
Class School < ActiveRecord::Base
has_many :courses
has_many :students, :through => courses, :through => coursesections, :through => enrollments
end
...
0
votes
1answer
31 views
Model has_many AND has_many :through in one?
I have a set of categories, belonging to a category set.
These categories can themselves have a mix of categories (self-referential) and also questions.
The models and their relationships are defined ...
0
votes
0answers
37 views
Rails Model Method Behaving Differently Depending Upon Size of Parameters?
I have rather baffling problem. I have a greasemonkey script that grabs some data on a page and then when I click a button sends the data to a Rails (3.1, ruby 1.8.7, postgresql) app. The data is then ...
0
votes
0answers
47 views
Multi Model Wizard Form Rails 3
I've been banging my head on this problem for a while now, But can't seem to find a reasonable answer. I'll describe my problem and my setup. Hopefully I can get some ideas!
The Problem
Im trying to ...
0
votes
1answer
201 views
Polymorphic :has_many, :through as module in Rails 3.1 plugin
I've search everywhere for a pointer to this, but can't find one. Basically, I want to do what everyone else wants to do when they create a polymorphic relationship in a :has_many, :through way… but I ...
0
votes
0answers
46 views
rails nested has_many display field and model design pattern
I want to create a view to has_many model which will list all the answers to a topic. The relation between the question and answers is really simple, but everything else is getting too complex.
The ...
0
votes
1answer
20 views
Rails Model and foreign keys
Sorry if this has been asked before but I've tried searching and can't find exactly what I'm looking for.
I have two tables, one is called users and has a user_id field, the second is called ...
0
votes
1answer
54 views
Ruby on Rails models relationship
need some advice.
I'm doing a project on RoR, and do not sure what relationship between the models should I use. I've got three models - Users, Boards and Messages.
The beginning is pretty simple:
...
0
votes
2answers
52 views
Howto structure rails user friendships model?
I need to create a user Friendship (user1_id, user2_id) model which connects users.
I would like to avoid having to create two Friendship records for every user / friend as a friendship goes both ...
0
votes
1answer
84 views
Find all distinct records with more than n entries
I have a 'Post' model which has a has_many relationship with model 'Comment'. For each Post I want to get a hash of unique comments with more than n number of entries. Each Comment is tied to a user ...
0
votes
2answers
90 views
RoR3 Model associations (Game belongs_to two Players)
I'm really new to Ruby on Rails 3 and I'm working on a simple chess game application. I plan to create the following models:
rails g model Player name:string
rails g model Game player_id_white:int ...
0
votes
1answer
57 views
Including modules in Rails 3: for both instance and class methods (and with HTTPparty.)
I've been wondering about the way to get both class and instance methods into a module, and then including that module into a model.
I've got it working with other examples, but I am struggling to ...
0
votes
0answers
88 views
issue with saving new record in rails 3.1 between 2 models
Ok guys sorry if this is duplicate I have searched for similar but my question is not being answered or rather I am not being able to fix this issue.
I have 2 models named 1-studdetails 2-subjects. ...
0
votes
3answers
28 views
how to fetch a model using the order by of an associated model?
I have Models A and B. A has_many B. Now I wanna fetch all the records of A ordered by the B's updated_at. Is it possible to write a find function for this?
0
votes
1answer
118 views
Ruby on rails 3 - Join many models to update a field of one model using attributes from another model non related directly
I have a problem trying to update an attribute of one model using the value from another model, but those two models are not related.
My models are:
class Order < ActiveRecord::Base
has_many ...