mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
removed group model
This commit is contained in:
parent
abad8924b8
commit
01ee94e07a
@ -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[];
|
|
||||||
|
|
||||||
} */
|
|
||||||
Loading…
x
Reference in New Issue
Block a user