summaryrefslogtreecommitdiff
path: root/app/models
diff options
context:
space:
mode:
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