2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/docs/models/index.md

53 lines
969 B
Markdown
Raw Normal View History

2018-01-10 12:49:52 +00:00
# Declaring Models
2018-02-22 07:36:28 +00:00
Models are declared by adding a `.js` model file in the `models/doctype` folder of the module/app.
2018-01-10 12:49:52 +00:00
Note: A model is called `DocType` in Frappe.js
2018-02-22 07:36:28 +00:00
### Fields
Every model must have a set of fields (these become database columns). All fields must have
- `fieldname`: Column name in database / property name
- `fieldtype`: Data type ([see details](fields.md))
- `label`: Display label
- `required`: Is mandatory
- `hidden`: Is hidden
- `disabled`: Is disabled
2018-01-10 12:49:52 +00:00
### Example
2018-02-22 07:36:28 +00:00
```js
module.exports = {
"naming": "random",
2018-01-10 12:49:52 +00:00
"name": "ToDo",
"doctype": "DocType",
"issingle": 0,
"fields": [
{
"fieldname": "subject",
"label": "Subject",
"fieldtype": "Data",
"reqd": 1
},
{
"fieldname": "description",
"label": "Description",
"fieldtype": "Text"
},
{
"fieldname": "status",
"label": "Status",
"fieldtype": "Select",
"options": [
"Open",
"Closed"
],
"default": "Open",
"reqd": 1
}
]
}
```