summaryrefslogtreecommitdiff
path: root/app/models/product.rb
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-04-01 13:07:39 -0600
committerHombreLaser <sebastian-440@live.com>2023-04-01 13:07:39 -0600
commitd8842d83862fc26de22b3a6ed0a89e56f87b2e7e (patch)
tree00f1c4e2c38d3de97e418ddaf1227ebb0f176677 /app/models/product.rb
parentbd3a6121c068f871dc5bd40c79c052e33fcd330e (diff)
Añade controlador de Reviews
Diffstat (limited to 'app/models/product.rb')
-rw-r--r--app/models/product.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/models/product.rb b/app/models/product.rb
index e6f3720..b9ca828 100644
--- a/app/models/product.rb
+++ b/app/models/product.rb
@@ -11,6 +11,8 @@
class Product < ApplicationRecord
belongs_to :company
+ has_many :product_reviews
+
validates :name, presence: true
validates :unitary_price, presence: true
validates :unitary_price, comparison: { greater_than: 0 }