mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
50 lines
1007 B
TypeScript
50 lines
1007 B
TypeScript
import { DatabaseMethod } from 'utils/db/types';
|
|
import { KnexColumnType } from './database/types';
|
|
|
|
export const sqliteTypeMap: Record<string, KnexColumnType> = {
|
|
AutoComplete: 'text',
|
|
Currency: 'text',
|
|
Int: 'integer',
|
|
Float: 'float',
|
|
Percent: 'float',
|
|
Check: 'boolean',
|
|
Code: 'text',
|
|
Date: 'date',
|
|
Datetime: 'datetime',
|
|
Time: 'time',
|
|
Text: 'text',
|
|
Data: 'text',
|
|
Link: 'text',
|
|
DynamicLink: 'text',
|
|
Password: 'text',
|
|
Select: 'text',
|
|
File: 'binary',
|
|
Attach: 'text',
|
|
AttachImage: 'text',
|
|
Color: 'text',
|
|
};
|
|
|
|
export const SYSTEM = '__SYSTEM__';
|
|
export const validTypes = Object.keys(sqliteTypeMap);
|
|
export function getDefaultMetaFieldValueMap() {
|
|
const now = new Date().toISOString();
|
|
return {
|
|
createdBy: SYSTEM,
|
|
modifiedBy: SYSTEM,
|
|
created: now,
|
|
modified: now,
|
|
};
|
|
}
|
|
|
|
export const databaseMethodSet: Set<DatabaseMethod> = new Set([
|
|
'insert',
|
|
'get',
|
|
'getAll',
|
|
'getSingleValues',
|
|
'rename',
|
|
'update',
|
|
'delete',
|
|
'close',
|
|
'exists',
|
|
]);
|