Changes
Title
unchanged
How to validate the uniqueness of multiple columns
Category
unchanged
How-tos
Yii version
unchanged
Tags
unchanged
unique, unique validator, uniqueness validator, multiple unique columns, multiple primary keys
Content
changed
I am going to show you an effective way to validate the uniqueness of multiple columns.
In the following example we have 3 columns
, the combination of which need to be unique: id, category and language.
```php
class Post extends CActiveRecord
{[...]