Skip to content

Commit

Permalink
remove not null constraint on transaction_details.iban_transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
esposimo committed Mar 25, 2024
1 parent 07ca63d commit ca4066e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sql/02_2024_create_table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ create table if not exists public.transaction_details_2024
iur varchar(35) null,
pa_transfer varchar(11) not null,
id_transfer smallint null,
iban_transfer varchar(40) not null,
iban_transfer varchar(40) null,
amount_transfer numeric null,
is_bollo boolean default false,
constraint "TRANSACTION_DETAILS_2024_pk" PRIMARY KEY (date_event, id)
Expand Down

0 comments on commit ca4066e

Please sign in to comment.