Make hourly rate optional for clients and invoices

This commit is contained in:
2025-07-31 19:11:20 -04:00
parent 817689001c
commit d9515f7723
6 changed files with 104 additions and 40 deletions

View File

@@ -108,7 +108,7 @@ export const clients = createTable(
state: d.varchar({ length: 50 }),
postalCode: d.varchar({ length: 20 }),
country: d.varchar({ length: 100 }),
defaultHourlyRate: d.real().notNull().default(100.0),
defaultHourlyRate: d.real(),
createdById: d
.varchar({ length: 255 })
.notNull()