Files
twenty_crm/server/src/tenant/metadata/entity-schema-generator/base.entity.ts
Weiko ec90c77ec1 Refactor tenant ORM integration (#1650)
* Refactor tenant ORM integration

* fix tests
2023-09-19 17:58:28 +02:00

8 lines
114 B
TypeScript

export const baseColumns = {
id: {
primary: true,
type: 'uuid',
generated: 'uuid',
},
} as const;