fix create membership
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
import {
|
||||
Entity,
|
||||
Column,
|
||||
} from 'typeorm';
|
||||
import { BaseModel } from '../../config/basemodel.entity';
|
||||
import { balanceType } from '../../helper/enum-list';
|
||||
|
||||
@Entity()
|
||||
export class CoaType extends BaseModel {
|
||||
@Column()
|
||||
name: string;
|
||||
|
||||
@Column('text')
|
||||
normalBalance: balanceType;
|
||||
}
|
||||
@@ -21,4 +21,9 @@ export class COA extends BaseModel {
|
||||
|
||||
@Column()
|
||||
user: string;
|
||||
|
||||
@Column({
|
||||
nullable:true
|
||||
})
|
||||
relatedUser: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user