working form
This commit is contained in:
11
app/models/author.rb
Normal file
11
app/models/author.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
class Author < ApplicationRecord
|
||||
|
||||
has_many :proverbs
|
||||
|
||||
validates :name, presence: true
|
||||
validates :unique_id, presence: true, uniqueness: true
|
||||
|
||||
def identify_uniquely
|
||||
self.unique_id = name.to_s.downcase.gsub(/[\W\s]/,'')
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user