diff --git a/backend/src/typeorm/entity/Group.ts b/backend/src/typeorm/entity/Group.ts deleted file mode 100644 index 6694ea742..000000000 --- a/backend/src/typeorm/entity/Group.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* import { Entity, PrimaryGeneratedColumn, Column, OneToMany } from "typeorm"; -import { User } from "./User" - -@Entity() -export class Group { - - @PrimaryGeneratedColumn() - id: number; - - @Column() - alias: string; - - @Column() - name: string; - - @Column() - url: string; - - @Column() - description: string; - - @OneToMany(type => User, user => user.group) - users: User[]; - -} */