Skip to content

Commit

Permalink
Remove previously-deleted table from legacy_seed
Browse files Browse the repository at this point in the history
The entity backing this table, RequiredField, was deleted in
bb02671. The legacy seed SQL script was
developed in parallel before the deletion was merged.

Delete the unused table.

Issue #36 Use Hibernate 5, instead of 4
Pull request #180 Delete unused entity RequiredField
Pull request #182 Created a separate SQL file to create tables for the
                  unmigrated entities
  • Loading branch information
jasonaowen committed Jul 6, 2017
1 parent 3be38a4 commit 38ea5da
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions psm-app/db/legacy_seed.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ DROP TABLE IF EXISTS
external_account_link,
external_profile_link,
profile_assured_ext_svcs,
profile_assured_svc_xref,
required_fld
profile_assured_svc_xref
CASCADE ;

create table external_account_link
Expand Down Expand Up @@ -52,15 +51,3 @@ alter table profile_assured_ext_svcs
add constraint fknpq45dvbn0v9qxjrp3ccs81uy
foreign key (profile_assured_svc_id) references profile_assured_svc_xref
;

create table required_fld
(
code varchar(2) not null
constraint required_fld_pkey
primary key,
description varchar(255),
required_fld_type_id varchar(2)
constraint fk3pj5itnxvpohvq0q8skilyal0
references required_fld
)
;

0 comments on commit 38ea5da

Please sign in to comment.