Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ public class StatementOfTruthDetails {

@CCD(
label = "Full name",
max = 60)
max = 100)
protected String fullNameClaimant;

@CCD(
label = "Position or office held",
max = 60
max = 100
)
protected String positionClaimant;

Expand All @@ -46,19 +46,19 @@ public class StatementOfTruthDetails {

@CCD(
label = "Full name",
max = 60
max = 100
)
protected String fullNameLegalRep;

@CCD(
label = "Name of firm",
max = 60
max = 100
)
protected String firmNameLegalRep;

@CCD(
label = "Position or office held",
max = 60
max = 100
)
protected String positionLegalRep;

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ALTER TABLE statement_of_truth
ALTER COLUMN full_name TYPE VARCHAR(100),
ALTER COLUMN firm_name TYPE VARCHAR(100),
ALTER COLUMN position_held TYPE VARCHAR(100);

ALTER TABLE enf_warrant
ALTER COLUMN full_name_claimant TYPE VARCHAR(100),
ALTER COLUMN position_claimant TYPE VARCHAR(100),
ALTER column full_name_legal_rep TYPE VARCHAR(100),
ALTER COLUMN firm_name_legal_rep TYPE VARCHAR(100),
ALTER COLUMN position_legal_rep TYPE VARCHAR(100);