remove unused

This commit is contained in:
2026-03-09 14:55:40 +03:30
parent 3549d3eab8
commit 4033760d0f
109 changed files with 33 additions and 7739 deletions
@@ -1,15 +0,0 @@
import { Entity, Index, Property, Collection, OneToMany, Cascade } from '@mikro-orm/core';
import { BaseEntity } from '../../../common/entities/base.entity';
import { Icon } from './icon.entity';
@Entity({ tableName: 'icon_groups' })
export class Group extends BaseEntity {
@Property()
name!: string;
@OneToMany(() => Icon, icon => icon.group,{
cascade: [Cascade.ALL],
orphanRemoval: true,
})
icons = new Collection<Icon>(this);
}