Fix for mysql database cause key is a reserved word

This commit is contained in:
Dmitriy Zaporozhets 2012-03-02 22:33:29 +02:00
parent 770f18ac50
commit 2d162ff9ac

View file

@ -24,7 +24,7 @@ class Key < ActiveRecord::Base
end
def unique_key
query = Key.where('key = ?', key)
query = Key.where('`key` = ?', key)
query = query.where('(project_id IS NULL OR project_id = ?)', project_id) if project_id
if (query.count > 0)
errors.add :key, 'already exist.'