The has_and_belongs_to_many relationship, meaning both entities can have multiple occurrences of each other, for models (tables) in Ruby on Rails and other MVC frameworks.
0
votes
2answers
55 views
Cakephp HABTM: View generating drop down instead of multi value selectbox
I am trying to work with HABTM association between Profiles and Qualifications tables.
Model: Profile.php
App::uses('AppModel', 'Model');
class Profile extends AppModel {
public ...
0
votes
0answers
45 views
rails many to many relationship from the beginning (all model creation)
I've read a lot of SO questions on this and migration guides and api and am not clear. Most of the answers assume you have models and tables for the two entities. I'm starting from scratch so need a ...
4
votes
6answers
164 views
Filtering model with HABTM relationship
I have 2 models - Restaurant and Feature. They are connected via has_and_belongs_to_many relationship. The gist of it is that you have restaurants with many features like delivery, pizza, sandwiches, ...
1
vote
1answer
50 views
What should my Model relationships be for this CakePHP app?
I am having trouble figuring out how to structure this. Here is my app:
It is a games website...say the games are "word search", "sodoku", and "crossword puzzle".
Each game has many puzzles. So ...
0
votes
1answer
20 views
Cakephp HABTM: Model not accessible in controller
I am trying to work with HABTM association between Profiles and Qualifications tables.
Model: Profile.php
App::uses('AppModel', 'Model');
class Profile extends AppModel {
public ...
0
votes
1answer
35 views
Can I have an automatically generated HABTM table in CakePHP?
Here's my situation...I am making a website of games. Each games has many modes, and each game also has many puzzles. For example, if the game is a word search game, a puzzle will be a unique grid of ...
0
votes
1answer
41 views
Error “Missing Database Table” when using HABTM
I have a problem with HABTM in Cakephp.
There is two models: User (musicians) and Genre.
And there is three tables: users, genres, genres_users (id (primary), genre_id, user_id).
Wrote in User:
...
0
votes
0answers
33 views
HABTM (rich association) nested form for images (rails).
I'm trying to create a form for adding images to my pages through rich HABTM association. The basic idea is to let the user be able to ether select an already uploaded image, or upload a new one. I ...
0
votes
1answer
32 views
Checkboxes selected on edit - HABTM models
I have 2 models: Attorney and Powers.
Where: Attorney HABTM Powers
When I add a new Attorney, I select many checkboxes that correspond to the Powers.
My question is: When I edit an Attorney, how do ...
1
vote
2answers
31 views
Deleting a record in a has_and_belongs_to_many table - Rails
I've been looking, and can't find a good answer for how to delete records in a HABTM table. I assume a lot of people have this same requirement.
Simply, I have Students, Classes, and Classes_Students
...
0
votes
0answers
34 views
Ransack's collection_select and HABTM return undefined method
I've been looking over my code over and over again and I can't see my problem.
I have two Models Person and Credential. They have a HABTM relationship.
Person
class Person < ActiveRecord::Base
...
1
vote
2answers
39 views
HABTM Adding new associations to join table
How do I add multiple records to a has_and_belongs_to_many table between two models?
All I can figure out how to do so far is create one record, and then update that record. I want to add multiple ...
1
vote
1answer
38 views
Creating multiple records in a HABTM relationship using a collection_select - Rails
I have a has_and_belongs_to_many relationship between workouts and groups.
I have a collection_select in groups that I'm using to add workouts to groups.
The problem is that I can only change the ...
2
votes
1answer
83 views
Laravel eloquent has_many_and_belongs_to sync() without writing to database
In short, does Laravel's eloquent have something like it's sync() functionality that doesn't save the relationships to the database right away?
I have two models
Place (id, name, address);
and
...
0
votes
1answer
110 views
Polymorphic relationships with pivot table in Laravel?
I got 3 models, Article, Building, Person.
These models need to reference each other in a few ways. For example the building needs to be able to reference collections of Person like ...
0
votes
0answers
27 views
foreignKey table in habtm relationship gets wrongly updated with the latest revision id
I have two models in a habtm relationship: Person & Company.
Both of them have the revision behaviour: ...
0
votes
0answers
30 views
cakephp 1.3 HABTM relation not recognizing useTable
I've created a a HABTM relationship in CakePHP 1.3 within a plugin. The plugins name is Products, the two models are "Asset" and "AssetCategory". Essentially we have Products (Assets) and those ...
0
votes
1answer
15 views
HABTM Search by multiple associated records
Following issue:
I have the ID of a Product and two IDS for Option Values. I want to look up the Variant that matches the Product ID and the two Option Value IDs.
So for an Example:
I have a ...
0
votes
1answer
42 views
Retrieving data through two model relationships
I'm trying to retrieve some data through two model relationships with CakePHP. The models and their associations are as follows:
User hasOne Profile HABTM Skill
I would like the user's skills to be ...
0
votes
0answers
52 views
How to save associated record on has_many :through association
I have following connections in my Models:
class Campaign
belongs_to :customers_list
has_many :customers, through: :customers_list
end
class CustomersList
has_many :campaigns
...
0
votes
0answers
30 views
Is Rails' HABTM the only answer?
I have two models, absences and users.
Previously, I only needed a has many and belongs to one relationship between the two models, an absence belonged to one user when they were absent from work and ...
0
votes
1answer
27 views
MySQL: Join HABTM tables and then update a column with a count of the results
What I want to do must be broadly applicable, but it's hard to describe, so I'll give a dummy version of my circumstances (pretend posts are sometimes co-authored):
Table A: Users
id | name ...
1
vote
2answers
32 views
Is there any way to do a counter_cache with an HABTM?
All the results I am seeing in Google seem to be from Rails 2.x and 3.0.
Given that Rails 4 is right around the corner, have there been any changes to allow us to use counter_cache on a HABTM ...
1
vote
1answer
36 views
what is the best way to use a “soft delete” technique using HABTM
Currently I am working with cakephp framework. In my project there are three tables ( for example: menu, menu_position, and men_position_rel ).
In menu table i have id, menu_title column
In ...
0
votes
0answers
83 views
Cakephp 2.3 using ACL with HABTM relationships
I would like to use cakePHPs Access Control Lists to manage authorization in my application.
My model is pretty complex with some many-to-many/HABTM relationships. It would be too much to describe the ...
0
votes
1answer
56 views
CakePHP 2.0 twitter-like follow button
I can't help myself and it's currently annoying, and yes, I used google a lot.
What I need:
A twitterlike follow button with the action to follow user.
What I already did:
Database
users table: ...
0
votes
0answers
96 views
Mongoid polymorphic HABTM solution
Hello I use mongodb via mongoid with RoR. I want to build a polymorphic HABTM(has and belongs to many) relation.
How I implemented this:
User.rb
class User
has_and_belongs_to_many :checkin_place, ...
0
votes
1answer
137 views
ruby on rails NameError: undefined local variable or method 'record'
I am having trouble creating a correct HABTM (has_and_belongs_to_many) relation where custom SQL behaviour is required. The idea is to have Documents which can be attached to a single Service or ...
0
votes
1answer
362 views
Cakephp 2.3.1 HABTM Edit Form Displaying Drop Down Box Instead of Multi Select Box
I have a HABTM relationship between Dancers and Dances. Things seem to be working as expected except that on edit.ctp for editing my Dances, CakePHP is showing a drop down box instead of a the ...
0
votes
1answer
46 views
HATBM, how to write into lookup table and only into one of the associated tables, not in both?
The question is: given two models A and B being in HABTM association, when I create new instance of A, how to instruct Rails not to write to A, B and A_B, but just to A and A_B?
So, more precisely: I ...
0
votes
2answers
44 views
How do I clean up my join_table and remove duplicate entries?
I have 2 models - Question and Tag - which have a HABTM between them, and they share a join table questions_tags.
Feast your eyes on this badboy:
1.9.3p392 :011 > Question.count
(852.1ms) ...
0
votes
1answer
34 views
How do I query both sides of a HABTM relationship?
I have two models - Question & Tag.
Both have a HABTM association between themselves. There is also a questions_tags join table.
If I have a question (q), I can find the tags by simply doing ...
1
vote
1answer
133 views
cakePHP saving entries to join table of existing records
first a short description. I have to models: accounts and users and a join table of it accounts_users. the models have a habtm associasions on each model:
User Model:
'Account' => array(
...
0
votes
1answer
38 views
Why I can't see the result of HABTM?
I am using cakephp since few months, and I have a problem today that I don't know why it is not working as always.
I've got three table:
posts
comments
posts_comments
In the models, I set :
...
0
votes
0answers
87 views
cake php habtm select does not set selected values
Hello I have several troubles with HABTM and Form.
I am using CakePHP 2.3 and PHP 5.3.3
This is my code situation for the understanding of the scenario: Albums and Singles related with a HABTM ...
0
votes
2answers
111 views
Rails HABTM self join error
In my application a user can follow many users and can be followed by many users.
I tried to model this using has_and_belongs_to_many association
class User < ActiveRecord::Base
...
1
vote
1answer
82 views
Cakephp HABTM saveAll creates wrong db records
I have a Model User:
public $hasMany = array(
'Contact' => array('dependent' => true));
public $hasAndBelongsToMany = array(
'MySharepermission' => array(
'unigue' => ...
0
votes
1answer
17 views
Why aren't the methods generated by has_and_belongs_to_many bidirectional?
I have...
app/models/report.rb:
has_and_belongs_to :standards
app/models/standard.rb:
has_and_belongs_to :reports
db/schema.rb:
create_table "reports_standards", :id => false, :force => ...
0
votes
1answer
102 views
Add multiple instances of HABTM associations in simple-form
I have a rails project with Products and Orders in a HABTM relationship. In the form for orders, I want a user to be able to click on a button and have it preselect a number of products (some of them ...
0
votes
1answer
66 views
Cakephp find HABTM
I have 3 models (User, Message and Tag) with the following relations:
User hasMany Message
Message belongsto User
Message HABTM Tag
Tag HABTM Message
If a User is logged in he might want ...
0
votes
2answers
194 views
form for object in two HABTM relationships, Rails 3
I'm trying to learn Ruby on Rails by building a website. Users can add content: Posts and Pictures. Posts and Pictures can have one or more Tags. I want each relationship to be HABTM so I can ...
3
votes
1answer
97 views
CakePHP find items without HABTM relationship record
Simply put: Tags HABTM Documents
Is there a way to find all Tags that don't have a Document associated?
I've started with this:
$freeTags = $this->Tag->find('all', array(
...
0
votes
0answers
65 views
Cakephp HABTM saveAll array
is this a valid HABTM saveAll array? I cant make it work! Im using CakePHP 2.3.
array(
'Site' => array(
'user_id' => '11',
'name' => 'Test1',
'url' => ...
0
votes
0answers
32 views
the logic of HABTM in cakephp
I have to tables:
1.actors
2.movies (Movies that an actor has played)
actors ---> id
, fname
, lname
, movie_id
movies ---> id
, name
, ...
0
votes
0answers
76 views
CakePHP HABTM form issue
I have a simple question about how to save multiple HABTM relationships at once.
I know my array has to be an indexed array of all the entries I'm about to post, just like that
array(
[0] => ...
0
votes
1answer
85 views
Views in a has_many :through relationship
I've been tinkering with this for some time now, and can't seem to figure this out. It's probably something simple, but here goes:
I have a has_many :trough relationship between 'laminate', and ...
0
votes
0answers
71 views
has_and_belongs_to_many and accepts_nested_attributes_for
class Trip
has_many :trip_places
has_many :places, through: :trip_places
accepts_nested_attributes_for :places
end
class Place
has_many :trip_places
has_many :trips, through: ...
0
votes
1answer
78 views
Make CakePHP save multiple HABTM records of the same linked property
Sorry for the bad title, I have no idea how to call it otherwise.
My "Product" table has a HABTM-link set up with "ProductProperty".
Now, unfortunately, the client has decided every property could ...
0
votes
1answer
306 views
Trying to save HABTM model data in CakePHP 2.0
I have a data model that requires the use of HABTM, as follows:
surveys
(
id int(11) NOT NULL AUTO_INCREMENT,
user_id int(11) NOT NULL,
title varchar(50) DEFAULT NULL,
created ...
0
votes
1answer
166 views
HABTM Checkboxes using simpleform gem
I have three models, and i am trying to save onto a third table using simple form gem and checkboxes.
class Work < ActiveRecord::Base
has_many :skills, through: :skillships
end
The second ...






