Tagged Questions
0
votes
1answer
25 views
Rails relationship with a relationship
I have a user and a merchant that have a relationship. I need to store information about the relationship, so I am using => through user_merchant_relations.
1) Is my naming convention incorrect? ...
1
vote
1answer
12 views
rails belongs_to foreign key is null
i have the following models
class User
has_many :projects, :through => :bids
has_many :bids, :dependent => :destroy
end
class Project
attr_accessible :name, :user_id
has_many :users, ...
0
votes
1answer
37 views
has_many :through with a foreign key?
I've read multiple questions about this, but have yet to find an answer that works for my situation.
I have 3 models: Apps, AppsGenres and Genres
Here are the pertinent fields from each of those:
...
0
votes
1answer
23 views
Belongs_to only recognized by console, not server
I've got a really weird problem with my project. I've got 2 models, the one is Link and the other Category. I've got a index view where all the links should be listed, together with the corresponding ...
0
votes
2answers
64 views
can't set user_id foreign key from the form of another model
I have three Models in a rails app, User, Hikingtrail & Photo. I would like to set the user_id foreign key for a new Photo when a User creates one.
Each User has_many :hikingtrails & ...
0
votes
1answer
55 views
How can I add seed data with correct relationships?
I'm creating forum software using Ruby on Rails. I'm stuck on adding seed data to my database with the correct database relations.
A forum has many topics, and a topic belongs to a forum. That is a ...
0
votes
1answer
66 views
How does the foreigner gem work?
I'm looking at the foreigner gem and trying to create some foreign keys. However, the gems documentation says that you should create your foreign keys like this `add_foreign_key(from_table, to_table, ...
0
votes
2answers
82 views
rails relationship model ( like/unlike button)
I am trying to create and implement a like/unlike button to a post model in rails. The only thing I sort of understand is I need some sort of relationship model with a has_many_through association. ...
0
votes
2answers
80 views
Relationships in Ruby on Rails across 4 models
I am trying to make some advanced relationships in my RoR models.
S far what I have working is projects and tasks- Projects have tasks and users have projects.
I now want that a user who is 'signed ...
0
votes
2answers
79 views
How to set a foreign key in rails?
I'm trying to save a object that has a foreign key attribute. I do not understand why it's not working. The foreign key is defined as not null in the database.
class Store < ActiveRecord::Base
...
0
votes
1answer
147 views
Why would someone use the gem foreigner?
This is most likely a noob question since people use this gem and a lot of people love it, but I don't get the purpose. I'm looking at a project and its been used here many times in places such as ...
0
votes
2answers
148 views
Rails copy id from one model to another
I have an employee model is follows :
class Employee < ActiveRecord::Base
attr_accessible :blood_group_id, :caste_id, :category_id, :emp_dob, :emp_email, :emp_fathername, :emp_fname, ...
-1
votes
1answer
61 views
Connecting a user model and event model in rails with foreign key?
--UPDATE: I've been doing some more reading and it looks like I should be adding a foreign key - could someone show me how I'd go about doing this? Should I be removing those extra fields I created?
...
0
votes
1answer
25 views
Ascertain a Rails association's foriegn_key at runtime
I have a number of Rails models, each of which has_one :myobj. I'd like to be able to determine at runtime, what the foreign key is for each of those associations. Is this possible?
I am not trying ...
0
votes
2answers
35 views
Updating model with ID of another model
Thought this would be a little straightforward, I may be missing something very simple. I wanted a dropdown list on the teams/create view that let me select the appropriate division for a team, the ...
2
votes
1answer
65 views
How do I set up a directed many-to-many self-join using :through?
I'm setting up a Rails project for a client, and they want Users (a model) to be able to follow each other (as in Twitter). They also want to be able to keep track of when one user started following ...
1
vote
2answers
67 views
Do I need to specify foreign keys in Ruby on Rails generators?
Here's my very small, basic test website use case I'm building:
A 'Posting' belongs to a 'User' and a 'User' can have many 'Posting's.
I know that in the database there has to be a foreign key ...
0
votes
1answer
76 views
Getting a value from a table through a foreign key in Rails?
Hi I have created two models,
class Fixture < ActiveRecord::Base
attr_accessible :away_score, :away_team_id, :home_score, :home_team_id, :result, :week
belongs_to :team, :class_name => Team
...
0
votes
2answers
50 views
Rails foreign key validations
I have a user and a document model; a user has many documents, a document belongs to a user. You can generalize this to just having a parent and a child model.
Now I am writing unit tests for the ...
0
votes
1answer
159 views
Modeling associations between ActiveRecord objects with Redis: avoiding multiple queries
I've been reading / playing around with the idea of using Redis to complement my ActiveRecord models, in particular as a way of modeling relationships. Also watched a few screencasts like this one: ...
0
votes
0answers
100 views
Rails 2.3.14 ActiveRecord::Base.create! doens't set foreign key anymore?
OK, so I have seen many questions that look like mine, but none have explained the problem I seem to have.
I'm probably missing something here, so I'd love more experienced Rails developers to ...
0
votes
0answers
74 views
How to get a single object with only the foreign keys using “render json”
I'm building a backend using Rails 3.2.8 and I have a huge object graph with lots of dependencies etc.
Example:
A belongs_to B (and of course B has_many A)
B belongs_to C
C belongs_to D
etc...
If ...
2
votes
1answer
103 views
Ruby on Rails: Simply Can Not Render Nested Attributes
I want to be able to show users who have liked a user's post. I am going to provide a simple amount of information so this issue won't get overwhelming.
I have three classes involved: User, Share ...
0
votes
2answers
68 views
Foreign key in Ruby Rails
Hey I need help with the following set-up, I cant seem to find a solution:
User.rb
class User < ActiveRecord::Base
has_one :education
end
Education.rb
class Education < ...
4
votes
1answer
131 views
Active Record has_many generates sql with foreign key IS NULL
I don't expect a model with NULL as foreign key to belong to anything!
I have the following rails app, modelling ants and ant hills (inspired by Jozef).
$ rails -v
Rails 3.2.8
$ rails new ant_hill
$ ...
2
votes
2answers
957 views
Creating foreign key constraints in ActiveRecord
How do I create foreign keys in ActiveRecord? I have something like the following in my models:
class Student < ActiveRecord::Base
attr_accessible :name, :level_id
belongs_to :level
end
...
0
votes
2answers
213 views
Lab expected, got String
I heve case model. Case model have 3 fiels for id of lab model.
in Case model
belongs_to :lab1, foreign_key: 'lab1', class_name: 'Lab', inverse_of: :lab1, conditions: {step1: true}
belongs_to :lab2, ...
0
votes
2answers
227 views
foreign keys not created in many to many case rails3 - create “key” instead “foreign key”
I want create foreign keys,
but i fails to create them (foreign keys for teacher_id, course_id) .
Please see the code - what should i change to produce foreign keys?
The case app = school
Steps:
...
0
votes
1answer
28 views
How to point foreign_key instead of table_name_id to something like product_id in a belong_to tale in rails 3
i have 3 tables
Collections, Contributors and ProductContributors
Association of them is as follows
Collection
has_many :product_contributors
has_many :contributors, :through => Product_contributors
...
0
votes
1answer
110 views
What to do when the foreign key is over-riden by the table it belongs to?
I apologize for the confused worded question and the potentially confusing explanation to follow, but, frankly, I'm confused.
I have a contact_link model that :belongs_to, among other models, a ...
2
votes
2answers
82 views
Associate foreign key through another foreign key
I've these 3 Models
class User < ActiveRecord::Base
has_many :answers, :as => :owner
end
class Answer < ActiveRecord::Base
belongs_to :owner, :polymorphic => true
has_one :test
...
2
votes
2answers
243 views
Rails has_many foreign key producing empty array
I'm can't figure out some weird behaviour that im getting in the rials console while I'm testing out some code.
My models are as follows:
profile.rb
class Profile < ActiveRecord::Base
...
2
votes
2answers
368 views
No PostgreSQL foreign keys after Rails migrations
".references" keyword in Rails migrations does not cause creation of foreign keys in PostgreSQL. How to create them using Rails' means only?
0
votes
1answer
110 views
(Rails) I have 2 models, Area (parent) & RadioStation (child). How might I pull an Area object's name in a Station form using an :area_id foreign key?
I have two "CRUD" forms generated by the "rails g scaffold ModelName type:attribute1, type2:attribute2" command, which is quite powerful.
I'll try to just show what is relevant. First here are my ...
0
votes
1answer
169 views
Setting up foreign keys with multiple has_one relationships
I'm setting up an app for posting items wanted/available/bartering. I've got two main classes, Post and Item.
Each post contains an offered_item, a wanted_item, or both. Here are my current ...
3
votes
1answer
2k views
Rails has_one with class name and foreign key
I have a Rails model which I use two has_one relations: requesterand friend. When in the console I use:
f = FriendRequest.all
f[0].requester
I get ActiveRecord::StatementInvalid: ...
1
vote
2answers
411 views
Rails custom foreign_key name on both table
I have two models, for example User and Club with their attributes:
User:
id
uid
email
etc.
and
Club:
id
player_id
address
supporter
etc.
For some reason, the join attribute is ...
3
votes
2answers
134 views
Best Practices For Creating a Notifications Database Table
I'm stumped on how to best do this, and was hoping the community could shed some light on it (maybe you have experience, or have an innovative way of solving this!).
I have an app where there are ...
0
votes
1answer
133 views
Updating an existing entry in my database isn't working
I'm trying to use a list of clients that have been created from my client model in my new model called Jobs.
Basically. A user should be able to view a list of jobs that are currently assigned to any ...
0
votes
1answer
164 views
Unknown attribute when linking two models together
Brief overview of my app.
It's quite basic in that the User first of all creates a set A client on one page and then uses another to create and assign jobs to the user.
My Client model and view are ...
0
votes
3answers
54 views
Should I index the sorting key field combined with the foreign key, or separately (mysql)?
(This is in a Rails app)
Given two tables:
items
id, int(11), primary key
name, varchar(30)
choices
id, int(11), primary key
item_id, int(11), foreign key
identifier, varchar(5)
name, varchar(30)
...
0
votes
2answers
109 views
rails, retrieve another user object besides foreign key
i have a user model and a message model. my user has_many messages and my message belongs_to user.
on my message model, i have the attributes :content, :user_id, :to_id.
the :user_id acts as the ...
3
votes
2answers
549 views
Rails: One-to-many foreign key incorrect
I am relatively new to rails. I am trying to set a one-to-many association in rails. However, I think I am doing something wrong with my foreign_key since my test is failing. My test is the following:
...
1
vote
2answers
121 views
Rename foreign_key to override in Rails Convention
I have a problem in association between two classes, so i have a class table here named Post
Class CreatePosts < ActiveRecord::Migration
def change
create_table :posts do |t|
...
0
votes
2answers
633 views
Adding foreign keys to rails database
I have a problem at the moment and am not sure what I should do. It is
in regards to relationships between tables and whether I need foreign
keys.
I have two tables in my database; users and games. ...
0
votes
1answer
66 views
has_many and belongs_to on other fields
I have two models that have a token field. They are called Ticket and Message.
My ticket model looks like so.
class Ticket < ActiveRecord::Base
include UUIDHelper
has_many :messages, ...
0
votes
2answers
408 views
In Ruby on Rails with the Foreigner Gem/Plugin, should the foreign key setup be visible in Schema.rb?
I am developing a Ruby on Rails application, and using the foreigner plugin to set up foreign key constraints in the migrations for example like this.
add_foreign_key(:notifications, :invitations, ...
1
vote
1answer
313 views
Ruby on Rails database: how to mention foreign key relation by changing app/model/table.rb file how to know they implemented
I am new to RoR. I used "rails generate model ServiceConfigs" command to generate a table.
so may commands are as below
rails generate model ServiceConfigs configs:string
rake db:migrate
-- can ...
0
votes
1answer
383 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 ...
1
vote
2answers
1k views
Accessing parent object attribute from child's object in Rails
I have a model called Category which looks like this:
class Category < ActiveRecord::Base
has_many :categories
belongs_to :category,:foreign_key => "parent_id"
end
I have a view which ...


