renaming and docs
This commit is contained in:
parent
b1b714f44e
commit
7e831cfb64
14 changed files with 86 additions and 32 deletions
|
|
@ -1,7 +1,9 @@
|
|||
import { Entity, Column } from "typeorm";
|
||||
import { AbstractEntity } from "./AbstractEntity.js";
|
||||
|
||||
// @todo Add migration to update table
|
||||
/**
|
||||
* Entity describing a user
|
||||
*/
|
||||
@Entity({ name: "user" })
|
||||
export class UserEntity extends AbstractEntity {
|
||||
@Column({ nullable: false, name: "user_name" })
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue