Skip to content

Commit

Permalink
fix: adding missing field to the database
Browse files Browse the repository at this point in the history
  • Loading branch information
Paulo Gomes da Cruz Junior committed Mar 9, 2023
1 parent 96b523e commit 943633f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ create table if not exists nrfc.submission_location (
city_name varchar(100) not null,
postal_code varchar(10) not null,
main_address_ind varchar(1) not null default 'N',
email_address varchar(50) not null,
constraint submission_location_id_pk primary key (submission_location_id),
constraint submission_id_fk foreign key (submission_id) references nrfc.submission(submission_id),
constraint submission_location_country_code_fk foreign key (country_code) references nrfc.country_code(country_code),
Expand Down

0 comments on commit 943633f

Please sign in to comment.