2022-03-23 06:16:13 +00:00
|
|
|
export const sqliteTypeMap = {
|
|
|
|
AutoComplete: 'text',
|
|
|
|
Currency: 'text',
|
|
|
|
Int: 'integer',
|
|
|
|
Float: 'float',
|
|
|
|
Percent: 'float',
|
|
|
|
Check: 'integer',
|
|
|
|
Code: 'text',
|
|
|
|
Date: 'text',
|
|
|
|
Datetime: 'text',
|
|
|
|
Time: 'text',
|
|
|
|
Text: 'text',
|
|
|
|
Data: 'text',
|
|
|
|
Link: 'text',
|
|
|
|
DynamicLink: 'text',
|
|
|
|
Password: 'text',
|
|
|
|
Select: 'text',
|
|
|
|
File: 'text',
|
|
|
|
Attach: 'text',
|
|
|
|
AttachImage: 'text',
|
|
|
|
Color: 'text',
|
|
|
|
};
|
|
|
|
|
|
|
|
export const validTypes = Object.keys(sqliteTypeMap);
|
2022-03-24 13:13:59 +00:00
|
|
|
export function getDefaultMetaFieldValueMap() {
|
|
|
|
return {
|
|
|
|
createdBy: '__SYSTEM__',
|
|
|
|
modifiedBy: '__SYSTEM__',
|
|
|
|
created: new Date().toISOString(),
|
|
|
|
modified: new Date().toISOString(),
|
|
|
|
};
|
2022-03-24 09:50:40 +00:00
|
|
|
}
|