added expenses resource

This commit is contained in:
Joe Arndt 2026-02-09 13:53:42 -06:00
parent c6434de89d
commit 78c312f279
27 changed files with 310 additions and 86 deletions

View file

@ -5,6 +5,6 @@ export class Merchant {
@PrimaryGeneratedColumn('uuid')
id: string;
@Column()
@Column({ unique: true })
name: string;
}