summaryrefslogtreecommitdiff
path: root/app/models
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-04-04 19:54:00 -0600
committerHombreLaser <sebastian-440@live.com>2023-04-04 19:54:00 -0600
commit18b129f8f6ba8c5c98adaf82ccfc4ba38264a29b (patch)
tree90b0bb96064198fec5747a55b65e3f419a5cb0e8 /app/models
parent72ccdfdf9bbea6269bc1a28199373abd5e8ce302 (diff)
Añade modelo Cart
Diffstat (limited to 'app/models')
-rw-r--r--app/models/cart.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/models/cart.rb b/app/models/cart.rb
new file mode 100644
index 0000000..f9e5ea0
--- /dev/null
+++ b/app/models/cart.rb
@@ -0,0 +1,6 @@
+# frozen_string_literal: true
+
+# Cart
+class Cart < ApplicationRecord
+ has_one :user_account
+end