diff options
author | HombreLaser <sebastian-440@live.com> | 2023-04-04 19:54:00 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-04-04 19:54:00 -0600 |
commit | 18b129f8f6ba8c5c98adaf82ccfc4ba38264a29b (patch) | |
tree | 90b0bb96064198fec5747a55b65e3f419a5cb0e8 /app | |
parent | 72ccdfdf9bbea6269bc1a28199373abd5e8ce302 (diff) |
Añade modelo Cart
Diffstat (limited to 'app')
-rw-r--r-- | app/models/cart.rb | 6 |
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 |