oms-Tag/Admin/Install/db.json

36 lines
958 B
JSON

{
"tag": {
"name": "tag",
"fields": {
"tag_id": {
"name": "tag_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"tag_title": {
"name": "tag_title",
"type": "VARCHAR(255)",
"null": false
},
"tag_color": {
"name": "tag_color",
"type": "VARCHAR(8)",
"null": false
},
"tag_type": {
"name": "tag_type",
"type": "TINYINT(1)",
"null": false
},
"tag_created_by": {
"name": "tag_created_by",
"type": "INT",
"null": false,
"foreignTable": "account",
"foreignKey": "account_id"
}
}
}
}