flsa_details
- back_wages
- Back wages owed under this detail row, in dollars.
- type
- Sub-classification of the FLSA violation.
- violation_id
- Foreign key to violations.id.
0 records
Table schema
CREATE TABLE flsa_details(violation_id BIGINT, "type" VARCHAR, back_wages DOUBLE, FOREIGN KEY (violation_id) REFERENCES violations(id));