Create new table for admin interface so that we can store the pending creations.

This commit is contained in:
elweyn 2021-11-24 09:17:15 +01:00
parent 8f99a971ae
commit 89529149ae

View File

@ -0,0 +1,4 @@
import { BaseEntity, Entity } from "typeorm";
@Entity('login_pending_tasks_admin')
export class LoginPendingTasksAdmin extends BaseEntity {}