https://github.com/gadicc/meteor-dbobj
https://github.com/gadicc/meteor-dbobj
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gadicc/meteor-dbobj
- Owner: gadicc
- Created: 2014-03-23T06:17:45.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-03-28T13:26:41.000Z (about 12 years ago)
- Last Synced: 2025-04-05T10:30:16.848Z (about 1 year ago)
- Language: JavaScript
- Size: 104 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```js
Product = baseDb.extend({
collection: Products,
schema: {
name: { },
company: { type: 'array' },
picURL: { },
barcode: { },
categories: { type: 'array' },
ingredients: { type: 'array' },
props: { type: 'object' },
lang: { },
trans: { type: 'object' }
},
xlsable: [ 'name', 'props.vegan.note', 'props.vegan.source' ]
});
```