removed group model

This commit is contained in:
Ulf Gebhardt 2021-10-01 20:15:10 +02:00 committed by einhornimmond
parent ab202824e1
commit e49b17f2ad

View File

@ -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[];
} */