fix: Remove many to many relation option (#7360)
## Description - This PR addresses the issue #7359
This commit is contained in:
@ -984,7 +984,6 @@ export type RelationDefinition = {
|
|||||||
|
|
||||||
/** Relation definition type */
|
/** Relation definition type */
|
||||||
export enum RelationDefinitionType {
|
export enum RelationDefinitionType {
|
||||||
ManyToMany = 'MANY_TO_MANY',
|
|
||||||
ManyToOne = 'MANY_TO_ONE',
|
ManyToOne = 'MANY_TO_ONE',
|
||||||
OneToMany = 'ONE_TO_MANY',
|
OneToMany = 'ONE_TO_MANY',
|
||||||
OneToOne = 'ONE_TO_ONE'
|
OneToOne = 'ONE_TO_ONE'
|
||||||
@ -992,7 +991,6 @@ export enum RelationDefinitionType {
|
|||||||
|
|
||||||
/** Type of the relation */
|
/** Type of the relation */
|
||||||
export enum RelationMetadataType {
|
export enum RelationMetadataType {
|
||||||
ManyToMany = 'MANY_TO_MANY',
|
|
||||||
ManyToOne = 'MANY_TO_ONE',
|
ManyToOne = 'MANY_TO_ONE',
|
||||||
OneToMany = 'ONE_TO_MANY',
|
OneToMany = 'ONE_TO_MANY',
|
||||||
OneToOne = 'ONE_TO_ONE'
|
OneToOne = 'ONE_TO_ONE'
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
import {
|
import {
|
||||||
IconComponent,
|
IconComponent,
|
||||||
IllustrationIconManyToMany,
|
|
||||||
IllustrationIconOneToMany,
|
IllustrationIconOneToMany,
|
||||||
IllustrationIconOneToOne,
|
IllustrationIconOneToOne,
|
||||||
} from 'twenty-ui';
|
} from 'twenty-ui';
|
||||||
@ -35,11 +34,4 @@ export const RELATION_TYPES: Record<
|
|||||||
imageSrc: OneToManySvg,
|
imageSrc: OneToManySvg,
|
||||||
isImageFlipped: true,
|
isImageFlipped: true,
|
||||||
},
|
},
|
||||||
// Not supported yet
|
|
||||||
[RelationDefinitionType.ManyToMany]: {
|
|
||||||
label: 'Belongs to many',
|
|
||||||
Icon: IllustrationIconManyToMany,
|
|
||||||
imageSrc: OneToManySvg,
|
|
||||||
isImageFlipped: true,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user