Tagged Questions
0
votes
1answer
15 views
Upgrade to Rails 3 and lost ability to run Active Record database migrations
I have a corporate web application that, for various reasons, has Active Record connections to SQL Server as well as Mongoid Documents. There has been resistance to updating to Rails 3 until now (yes, ...
1
vote
1answer
36 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 ...
2
votes
1answer
73 views
Access to parent from embedded document on creation (Mongoid)
This trick works with "has_many" relation, but fails with "embeds_many". Any ideas?
class Country
include Mongoid::Document
field :name, type: String
embeds_many :cities
end
class ...
0
votes
0answers
41 views
Saving data in an ActiveRecord Model from a Mongoid Model
I have the following code that gets run every after a Contact object is saved:
def create_or_update_user
user = User.find_by_email(:email, email)
if user
user.update_attributes(title: ...
0
votes
0answers
24 views
Validate uniqueness of a triplet in activerecord
I am trying to implement a validation of uniqueness for ActiveRecord (with Mongoid). I want to have uniqueness of a triplet, ie (field1, field2, field3) should be unique.
I have try something like
...
1
vote
1answer
90 views
Ruby on Rails changing time zones for application
My application has been running for over 6 months in the UTC time zone. This means all ActiveRecord and MongoDB objects have been created in the UTC time zone. Curious enough, if I go ahead and change ...
0
votes
1answer
115 views
Mongoid equivalent of ActiveRecord's `first_or_initialize`
I was just wondering if someone knew the mongoid equivalent of rails' activerecord-query-interface method first_or_initialize.
How do I implement the same functionality in Mongoid?
0
votes
3answers
90 views
Using validates_with with ruby and mongoid
I'm new to ruby and mongoid. I need to use validates_with and below is the code I have
class ValidatorClass < ActiveModel::Validator
def validate(record)
if record.name == ""
...
1
vote
1answer
102 views
has_one and has_many
I have a Team object and a Game object.
A Game is supposed to have one winner which is a Team
A Team can be the winner of multiple Games
How can I structure this correctly? I'm using Mongoid
This ...
0
votes
0answers
53 views
Getting the same results (i.e. document) when calling .first or .last on a location query
I am using Ruby on Rails to create a RESTful web service. I am using MongoDB for the model and Mongoid as the ODM. I created the app using scaffold and everything works fine both from the browser and ...
0
votes
1answer
336 views
mongoid update_attributes changed?
I want to update_attributes and than check if information is changed
You can simply pass this code to rails console in existing rails + mongoid project
class TestModel
include Mongoid::Document
...
1
vote
0answers
51 views
Rails ActiveRecord Mongoid Object
In my user model i have
field :contact_info, :default=>{}
field :info, :default=>{}
How could I create a User.new with contact_info.[some key]
[some key] being a key that the user would ...
0
votes
1answer
174 views
RoR3 + Mongoid: Filtering has_many relations while returning a collection of parents
I want to be able to return all instances of a model that contains a has_many association, while filtering those children using some arbitrary criteria passed by the user.
A simplistic example:
I ...
2
votes
1answer
150 views
getting ActiveRecord errors when using mongoid and Sql on Ironworker files
(I am relatively new to Rails)
I have a file (Ruby) I am running/uploading through Ironworker that is currently using MySql (activeRecord) for database.
ALl works fine, but We now have a need for a ...
1
vote
2answers
217 views
has_secure_password authenticate inside validation on password update
I'm using has_secure_password in a User model. I have implemented a way for users to change their password outside of the model, but to keep things DRY, I'm trying to move the validations needed from ...
1
vote
1answer
115 views
Embedded mongoid document not marked as dirty / not updating
I have a data model as follows
A bid is associated with the User that placed the bid
A bid may be either an offer or a listing on a single Product
A Product may have multiple offers and listings ...
1
vote
1answer
83 views
ActiveRecord has a MyModel.delete(…) method, while Mongoid does not?
We are currently migrating from MySQL to MongoDB, and I stumbled over the following:
MyModel.destroy(params[model_ids]) # Remove many objects at once by passing an array of IDs
This worked for ...
1
vote
2answers
217 views
Rails3: Skipping callbacks from within a callback
I have the following after_save callbacks defined in my model.
after_save :validate_image, :publish, :update_some_data, :send_notifications
Is it possible to skip rest of the after_save callbacks ...
1
vote
1answer
126 views
Mongoid model that points to an AR model and vice versa?
Let us say we have following models in our app:
# AR model
class Foo < ActiveRecord::Base
belongs_to :bars # this is an association pointing to a Mongoid model
end
# Mongoid model
class Bar
...
2
votes
1answer
430 views
Set default database connection Rails
My rails app has its own MySql database (and requires the mysql2 gem) but also needs to connect with an external MongoDB database for one particular model (and so I've included mongoid and bson_ext in ...
1
vote
1answer
376 views
Mongoid and Postgres Scaffolding/Relationships
I have a need for a certain model to contain a reference to a document. Most of the model could be stored in postgres. The model is for a "level" in a game. I'd like to store the level data itself ...
1
vote
1answer
947 views
ruby on rails + heroku + mongoid + devise = uninitialized constant User (NameError)
I'm getting an error when deploying my app to Heroku. After looking 3 days looking for a solution, it seams like a common error, but I did not find a solution yet. My application is running perfectly ...
0
votes
2answers
419 views
Validating polymorphic association type in Rails
I am developing a controller that creates a model with a polymorphic belongs_to association. What I do now to find the model it belongs to is as follows:
def find_polymorphic_model(classes)
...
2
votes
1answer
96 views
How to find opposite of nil in Rails queries
Happily using Mongoid and ActiveRecord like this:
Task.where(project_id: params[:project_id], archived_at: nil)
# find me the tasks for project_id that haven't been archived
But what's a ...
3
votes
1answer
768 views
Mongodb, mongoid Rails 3.1.* error with Active record
After 3-4 months when I returned to another project on RoR, with Mongoid. I was stuck on the strange issue. As I had been following Mongoid documented.
so generated mongoid.yml, deleted database.yml. ...
0
votes
1answer
273 views
Saving child objects when parsing foreign nested JSON objects in Mongoid and Rails
I'm storing social media postings from a REST API to Mongoid.
I'm using the very basic User/Post model:
class Post
include Mongoid::Document
belongs_to :user
end # post
class ...
2
votes
2answers
151 views
How to write this query with ActiveRecord or Mongoid?
Both of the interfaces for Mongoid and ActiveRecord are similar enough so I think either or will work. I need a query to meet the following criteria.
I need to know the number of days a particular ...
1
vote
1answer
89 views
Mongoid: query a range of ASCII characters
I have a collection with a string field called named in my Mongoid based class. I'd like to be able to query for all documents that begin with the letters in the a through f in the name field, case ...
0
votes
2answers
184 views
Accept Rails model attribute only if it was previously blank
I have a Rails model (persisted with Mongoid) that can be collaboratively edited by any registered user. However, I want to allow editing any particular attribute only if it was previously blank or ...
3
votes
1answer
482 views
Mongoid and ActiveRecord generators
I have both ActiveRecord (MySQL) and Mongoid in my Rails 3.1 application. Everything is fine, excepts all generators uses mongoid to generate models. This way, when i:
rails g model user
i receive ...
0
votes
1answer
235 views
complex ActiveRecord to MongoID query
could you please help me to convert active record query to mongoid?
where(["access_grants.access_token = ?
AND (access_grants.access_token_expires_at IS NULL
OR ...
2
votes
2answers
2k views
Simulating has_many :through with Mongoid
I'm trying to create an event platform using MongoDB as the db. I want a many-to-many relationship between Events and Users. The thing is, I want there to be properties in the relationship (e.g., ...
3
votes
2answers
2k views
Mongoid and ActiveRecord relations: undefined method `quoted_table_name'
class Contest < ActiveRecord::Base
has_one :claim_template
end
class ClaimTemplate
include Mongoid::Document
belongs_to :contest
end
# console
Contest.new.claim_template
#=> ...
43
votes
2answers
6k views
How to implement has_many :through relationships with Mongoid and mongodb?
Using this modified example from the Rails 3 guides, how does one model a relational "has_many :through" association using mongoid?
The challenge is that mongoid does not support has_many :through as ...
2
votes
3answers
498 views
RoR3+Mongoid: How to compare fields of collection/table when querying?
I have a structure that has both :id and a :group_id fields. I wish to retrieve all the data which :id equals :group_id.
I am currently working with mongoid, but I think that the operation is done ...
0
votes
1answer
1k views
Undefined method `serializable_hash' for array
I am using mongoid as my orm, and i call to_json on the result set. The initial implementation works fine, except for the fact that everything is loaded on the fly (as opposed to eager loading)
...
1
vote
1answer
1k views
Rails 3 MySql and MongoDB
I am starting work on a large project in Rails 3. I want to build the app using both MySql and MongoDB. I already know how to use Rails with MySql, and have found a lot of info about using MongoDB ...
9
votes
2answers
2k views
How can I use Mongoid and ActiveRecord in parallel in Rails 3?
I'm using rails 3, and began my application with ActiveRecord. Now, I have many models, and the relations are starting to get complicated, and some could be more simply expressed with a ...
0
votes
3answers
3k views
uninitialized constant ActiveRecord from exception_notification gem
I Am using exception notifier like this in my rails 3.0.7-
gem 'exception_notification_rails3', :require => 'exception_notifier'
This application uses mongoid rather than ActiveRecord. But when ...
17
votes
2answers
2k views
Using Active Record generators after Mongoid installation?
I'm using MongoDB via Mongoid integration, as well as ActiveRecord in a project. I would like to generate migrations for active record, and Mongoid is the default when I run.
rails g migration
Any ...
4
votes
2answers
790 views
Migrating an Activerecord database to Mongoid
I'm new to Rails programming. I was thinking about implementing devise and omniauth authentication per railscast tutorial. Since I don't know mongoid yet, I was planning on just starting with ...
4
votes
1answer
1k views
Grouping Mongoid Objects by Day
After much playing around in the console, I came up with this method to group activerecord-like (Mongoid) objects by the day on which they occured. I'm not sure this is the best way to accomplish ...
1
vote
1answer
893 views
How to validate models with a composite keys in ActiveRecord?
I'd like to know if I can write a validation that would validate the uniqueness of a record based on multiple fields. My model has a composite primary key, i.e.
field :houseno, :type => String
...
1
vote
1answer
462 views
How to use ActiveRecord callbacks to assign field values before save?
I'm wondering how I can use callbacks to assign values to the database fields, which are processed out of a virtual attribute field.Example:
field :houseno, :type => String
field :street, ...
1
vote
1answer
121 views
How do I update a cumulative field in a Rails database (using ActiveRecord or Mongoid)?
I want to update a field in a database table that has to have a cumulative value. So basically I need to find the current value of the field and update it using a new number.
My first inefficient ...
1
vote
1answer
721 views
Can we mix Mongodb dynamic attributes to an ActiveRecord model?
We are using a dynamic attributes plugin similar to this:
http://codaset.com/joelmoss/dynamic-attributes
Which allows us to store dynamic attributes in our rails model. Those dynamic attributes are ...
0
votes
2answers
447 views
Can I have thread safe per-request configuration for database connection and table_name in ActiveRecord (or Mongoid)?
Also known as the <<"User has many Databases" question.>>
The environment
My app is modeled like so:
user has_many databases
database has_many tables
table has_many rows
row ...
7
votes
4answers
2k views
How to skip callbacks on Mongoid Documents?
My question is similar to this one http://stackoverflow.com/questions/1342761/how-to-skip-activerecord-callbacks but instead of AR I'm using Mongoid, It seems like that isn't implemented yet in the ...
