Tagged Questions
The validates-uniqueness-of tag has no wiki summary.
23
votes
1answer
8k views
Rails 3: Validate combined values
In Rails 2.x you can use validations to make sure you have a unique combined value like this:
validates_uniqueness_of :husband, :scope => :wife
In the corresponding migration it could look like ...
6
votes
2answers
1k views
validates_uniqueness_of in nested model rails
I have a Project model which accepts nested attributes for Task.
class Project < ActiveRecord::Base
has_many :tasks
accepts_nested_attributes_for
:tasks, :allow_destroy => :true
...
6
votes
1answer
3k views
validates_uniqueness_of passes on nil or blank (without allow_nil and allow_blank)
The uniqueness validator of ActiveRecord has an options to skip validation if the value is nil or blank. Even if I set both parameters to true (the default behaviour) I can create one record with nil ...
5
votes
4answers
3k views
Rails uniqueness constraint and matching db unique index for null column
I have the following in my migration file
def self.up
create_table :payment_agreements do |t|
t.boolean :automatic, :default => true, :null => false
t.string ...
5
votes
1answer
2k views
Rails validates_uniqueness_of across multiple columns with case insensitivity
I have a model that has two fields, which I will call first_name and last_name, and I want to make sure that the combination of the two are case-insensitively unique. I've gotten halfway there by ...
3
votes
1answer
635 views
Rails 3: Uniqueness validation for nested fields_for
A have two models, "shop" and "product", linked via has_many :through.
In the shop form there are nested attributes for multiple products, and I'm having a little trouble with the product's ...
2
votes
1answer
168 views
validates_uniqueness_of before ActiveRecord::RecordNotUnique
I have the following class in a Rails 3.1.1 app:
class User < ActiveRecord::Base
attr_accessible :email, :password, :password_confirmation, :remember_me, :username, :admin, :moderator, :bio
...
2
votes
1answer
138 views
Rails: Append number to permalink, if permalink already taken
I would like to give John Doe the permalink john-doe-2, if there already is a john-doe-1.
The number should be the next free one to be appended ("john-doe-n")
Currently my permalinks are generated ...
2
votes
1answer
167 views
Rails model: validates_uniqueness_of doesn't remove trailing spaces not leading ones before unique check?
Suppose i implement validates_uniqueness_of on name of user. If name 'maddy' already exists then it will accept value ' maddy' as unique value but not 'maddy '. It should remove spaces both sides. ...
2
votes
2answers
340 views
Rails Model Validation: i need validates_inclusion_of with case sensitive false?
Here is code which is not working
class WeekDay < ActiveRecord::Base
validates_inclusion_of :day, :in => %w(sunday monday tuesday wednesday thursday friday saturday), ...
2
votes
1answer
216 views
Reservation Type System w/ Validation - Rails 3.0
What would be the best approach to trying to "validate" uniqueness of dates for object.
--
So for example, I have a Room, that can only have 1 person in it at a time.
A User can book this Room in ...
1
vote
1answer
332 views
Rail Model: Using validates_uniqueness_of with scope on attributes of associated entity?
I have Model defined as below
class One <Active:Record:Base
{
has_and_belongs_to_many :twos, {:join_table => 'map__ones__twos'}
}
class Two <Active:Record:Base
...
1
vote
1answer
424 views
Rails validates_uniqueness_of :scope on foreign key
I have a model "Product" that belongs_to "Store" (which has_many "products").
I want to validate the uniqueness of the product name but only within each store.
Right now I have this:
class Product ...
1
vote
1answer
195 views
Core Data uniqueness
Is there any way I can validate a value updated in a Core Data entity's property against values of the property in other entities in the collection?
At the moment I create an entity with some default ...
0
votes
0answers
35 views
Getting ActiveRecord::RecordNotUnique but then not able to find the existing record
I have something like the following code. (Model names changed as they're not important to what's happening.)
The #find_or_create_bar_for_blah_id works fine most of the time. Occasionally it will ...
0
votes
1answer
65 views
Validate uniqueness of child objects in Rails nested form
I have a form for Library, which has several nested objects for Librarian. My question is:
How can I validate uniqueness of Librarian's name? (there may be multiple librarians for one library, but ...
0
votes
2answers
72 views
skip validation_uniqueness for certain values
I have validation on uniqueness and I want skipping certain value or values(for example 0000):
validates_uniqueness_of :gtin, :scope => [:user_id, :item_id]
I'm tried to use next construction, ...
0
votes
1answer
68 views
validates_uniqueness custom handling ROR
I would like load the particular record if it fails the validates_uniqueness constraint.
I have id (primary key) and title in my model. If the user enters a title which is already present if want to ...
0
votes
1answer
80 views
validates_uniqueness_of field scoped to a has_one relationship
I have the following models:
class Section < ActiveRecord::Base
belongs_to :course
has_one :term, :through => :course
end
class ...
0
votes
0answers
239 views
return error message in mongoid uniqueness validation of many-to-many relation
I've following many-to-many relation where an employee can't be assigned same role twice and vice-versa.
I added uniqueness validations which works great but I'm having problem showing errors.
class ...
0
votes
1answer
160 views
validates_uniqueness_of failing with tests, machinist
I have a validates_uniqueness_of validation on my model:
#SwimMeetRelayEvent.rb
validates_uniqueness_of :event_number_digit, :scope => [:swim_meet_id, :event_number_alpha]
validates_uniqueness_of ...
0
votes
1answer
379 views
Unique value validation: before or after update to persistence layer?
I'm wondering what's the best method for validating a view field value to be unique in an entityset: before or after the update to persistence layer?
The involved db field has an unique constraint, ...
0
votes
1answer
491 views
Rails 3 validates_uniqueness_of with :scope generates invalid SQL?
Have two models that record some monthly statistics and I'm trying to enforce a composite key constraint within the model using:
validates_uniqueness_of :entity_id, :scope => [:year, :month]
...
0
votes
3answers
285 views
validates_uniqueness_of don't work
It's not some kind of synchronization problem I readed before.
The code is quite simple.
The model:
class User < ActiveRecord::Base
attr_accessor :name, :email
validates_uniqueness_of ...
0
votes
1answer
305 views
Hibernate - a different object with the same identifier value was already associated with the session
After changing the @id of a Entity from
@Id
private int getId(){
return this.id;
}
to
@Id
private String getLogin(){
return this.login;
}
I get the error:
a different object with the ...
0
votes
1answer
137 views
in rails, how to validate a fields which is NOT uniqueness?
can i have a validation which do exactly opposite to validates_uniqueness_of? i.e. i would like to show a error message when the user input is NOT exist in database.
thanks all. :)
0
votes
1answer
64 views
Ignoring specific validation errors
I have Labellings which belong to Emails and Labels.
Each labelling must be unique to the email/label pair - so an email can only be labelled 'test' once.
I'm doing this with validates_uniqueness_of ...
0
votes
1answer
1k views
Rails: Validates uniqueness of scoped by date
I have a Rails model that should only allow saving/updating of a model once per day per user. I have a callback to do the Find by user and date then add to errors but this is ugly and feels ...
0
votes
1answer
192 views
Bidirectional graph in rails
I have a simple model "Match" that is supposed to save the bi-directional link between two objects (of the same kind).
class Match < ActiveRecord::Base
belongs_to :obj1, :class_name => ...