not sure why i made everything numbers in the model but it's fixed now

This commit is contained in:
Aster Fialla
2026-03-01 16:21:48 -05:00
parent 5ef9050a7d
commit 66905b10d5
2 changed files with 6 additions and 7 deletions

View File

@@ -15,26 +15,25 @@ export class Members {
name: string
@Column({
type: "varchar",
nullable: true,
length: 100
})
displayname: number
displayname: string
@Column({
nullable: true,
})
proxy: number
proxy: string
@Column({
nullable: true,
})
propic: number
propic: string
@Column()
createdAt: Date
@Column()
updatedAt: Date
@Column()
systemid: string
}

View File

@@ -1,6 +1,6 @@
import { Entity, PrimaryGeneratedColumn, Column } from "typeorm"
@Entity()
@Entity({synchronize: true})
export class Systems {
@PrimaryGeneratedColumn()