Files
twenty/server/src/metadata/entity-schema-generator/base.entity.ts
T

16 lines
244 B
TypeScript

export const baseColumns = {
id: {
primary: true,
type: 'uuid',
generated: 'uuid',
},
createdAt: {
type: 'timestamp',
createDate: true,
},
updatedAt: {
type: 'timestamp',
updateDate: true,
},
} as const;