Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-26 08:38:30 +00:00
co-authored by renee-png
parent 3572e2d196
commit d0ed126cca
2 changed files with 6 additions and 3 deletions
+3 -3
View File
@@ -666,7 +666,7 @@ export type Database = {
credit: number
debit: number
description: string | null
entry_date: string
entry_date: string | null
id: string
interest: number
late: number
@@ -688,7 +688,7 @@ export type Database = {
credit?: number
debit?: number
description?: string | null
entry_date?: string
entry_date?: string | null
id?: string
interest?: number
late?: number
@@ -710,7 +710,7 @@ export type Database = {
credit?: number
debit?: number
description?: string | null
entry_date?: string
entry_date?: string | null
id?: string
interest?: number
late?: number
@@ -0,0 +1,3 @@
ALTER TABLE public.collection_ledger_entries
ALTER COLUMN entry_date DROP NOT NULL,
ALTER COLUMN entry_date DROP DEFAULT;