fix: latest customer data selection and button margin
This commit is contained in:
parent
68c635ce38
commit
b77b732bcb
5 changed files with 58 additions and 34 deletions
|
|
@ -5,23 +5,23 @@ exports.up = function (next) {
|
|||
`CREATE TABLE edited_customer_data (
|
||||
customer_id uuid PRIMARY KEY REFERENCES customers(id),
|
||||
id_card_data JSON,
|
||||
id_card_data_edited_at TIMESTAMPTZ,
|
||||
id_card_data_edited_by UUID REFERENCES users(id),
|
||||
id_card_data_at TIMESTAMPTZ,
|
||||
id_card_data_by UUID REFERENCES users(id),
|
||||
front_camera_path TEXT,
|
||||
front_camera_edited_at TIMESTAMPTZ,
|
||||
front_camera_edited_by UUID REFERENCES users(id),
|
||||
front_camera_at TIMESTAMPTZ,
|
||||
front_camera_by UUID REFERENCES users(id),
|
||||
id_card_photo_path TEXT,
|
||||
id_card_photo_edited_at TIMESTAMPTZ,
|
||||
id_card_photo_edited_by UUID REFERENCES users(id),
|
||||
id_card_photo_at TIMESTAMPTZ,
|
||||
id_card_photo_by UUID REFERENCES users(id),
|
||||
subscriber_info JSON,
|
||||
subscriber_info_edited_at TIMESTAMPTZ,
|
||||
subscriber_info_edited_by UUID REFERENCES users(id),
|
||||
subscriber_info_at TIMESTAMPTZ,
|
||||
subscriber_info_by UUID REFERENCES users(id),
|
||||
name TEXT,
|
||||
name_edited_at TIMESTAMPTZ,
|
||||
name_edited_by UUID REFERENCES users(id),
|
||||
name_at TIMESTAMPTZ,
|
||||
name_by UUID REFERENCES users(id),
|
||||
us_ssn TEXT,
|
||||
us_ssn_edited_at TIMESTAMPTZ,
|
||||
us_ssn_edited_by UUID REFERENCES users(id),
|
||||
us_ssn_at TIMESTAMPTZ,
|
||||
us_ssn_by UUID REFERENCES users(id),
|
||||
created TIMESTAMPTZ NOT NULL DEFAULT now() )`
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue