c280b3a29b
Refactored basic directory structure. Moved to ActiveSupport for Validations and Callbacks. Cleaned up older code, and removed support for text property types.
15 lines
349 B
Ruby
15 lines
349 B
Ruby
class Invoice < CouchRest::Model::Base
|
|
# Set the default database to use
|
|
use_database DB
|
|
|
|
# Official Schema
|
|
property :client_name
|
|
property :employee_name
|
|
property :location
|
|
|
|
# Validation
|
|
validates_presence_of :client_name, :employee_name
|
|
validates_presence_of :location, :message => "Hey stupid!, you forgot the location"
|
|
|
|
end
|