UNPKG
tsdms
Version:
latest (0.1.0)
0.1.0
Time Series Data Management System
bitbucket.org/sharingapples/wscada.net-server
tsdms
/
api
/
models
/
Tag.js
21 lines
(19 loc)
•
308 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module.exports
=
{
tableName:
"tag"
,
attributes:
{
name:
{
type:
'string'
,
unique:
true
},
description:
{
type:
'string'
},
providesUniqueness:
{
columnName:
"provides_uniqueness"
,
type:
'boolean'
},
starred:
{
type:
'boolean'
} } }