https://github.com/zoltan-nz/nested-set-app
Products and categories in a tree...
https://github.com/zoltan-nz/nested-set-app
Last synced: 7 months ago
JSON representation
Products and categories in a tree...
- Host: GitHub
- URL: https://github.com/zoltan-nz/nested-set-app
- Owner: zoltan-nz
- Created: 2012-12-05T17:23:05.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2014-01-28T10:28:38.000Z (over 11 years ago)
- Last Synced: 2025-01-22T02:46:19.501Z (9 months ago)
- Language: Ruby
- Homepage:
- Size: 896 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Nested Set App
==============Todo:
- Setup awesome nested set gem
- Create category with subcategories
- Create product management
- Create a page where you can manage products and sort orders: Catalogs###Models:
Category:
name :string
parent_id :integer
lft :integer
rgt :integer
depth :integerProduct:
name :string
category_id :integer
price :decimalCatalog:
name :stringJoin tables:
catalog-category
catalog_id
category_id
sort_order :decimalcatalog-product
catalog_id
product_id
sort_order :decimal
### Todo- build rails view version
- build backbone view version
- compare speed