mirror of
https://github.com/pieartsy/PluralFlux.git
synced 2026-04-16 17:45:28 +10:00
not sure why i made everything numbers in the model but it's fixed now
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { Entity, PrimaryGeneratedColumn, Column } from "typeorm"
|
||||
|
||||
@Entity()
|
||||
@Entity({synchronize: true})
|
||||
export class Systems {
|
||||
|
||||
@PrimaryGeneratedColumn()
|
||||
|
||||
Reference in New Issue
Block a user