new migration matching model names I want

This commit is contained in:
Aster Fialla
2026-03-01 17:16:52 -05:00
parent f64c9bd4ca
commit 54c87b9313
5 changed files with 27 additions and 30 deletions

View File

@@ -1,7 +1,7 @@
import { Entity, PrimaryGeneratedColumn, Column } from "typeorm"
@Entity({synchronize: true})
export class Members {
@Entity({name: "Member", synchronize: true})
export class Member {
@PrimaryGeneratedColumn()
id: number