Implement waiter ordering and improvements

This commit is contained in:
2014-03-24 10:02:57 +01:00
parent 474d5f88c6
commit 6c2427e082
24 changed files with 128 additions and 48 deletions
+10
View File
@@ -0,0 +1,10 @@
class Employee
include SimplyStored::Couch
devise :database_authenticatable, :recoverable, :rememberable, :trackable #, :omniauthable, :omniauth_providers => [:facebook] #, :token_authenticatable , :registerable
belongs_to :supplier
has_many :orders
has_and_belongs_to_many :lists, storing_keys: false
end