Readding schema for table in test.

This commit is contained in:
Kenneth Geisshirt 2017-09-30 10:26:42 +02:00
parent c361bdc9ed
commit 3ca8f3b1e1
1 changed files with 13 additions and 0 deletions

View File

@ -252,6 +252,19 @@ exports.NullQueryObject = {
]
};
exports.NullableBasicTypes = {
name: 'NullableBasicTypesObject',
properties: [
{name: 'boolCol', type: 'bool?'},
{name: 'intCol', type: 'int?'},
{name: 'floatCol', type: 'float?'},
{name: 'doubleCol', type: 'double?'},
{name: 'stringCol', type: 'string?'},
{name: 'dateCol', type: 'date?'},
{name: 'dataCol', type: 'data?'},
]
};
exports.DateObject = {
name: 'Date',
properties: {