Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
3572e2d196
commit
d0ed126cca
@@ -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;
|
||||
Reference in New Issue
Block a user