| Schema | core |
| Materialized View Name | unit_view |
| Owner | postgres |
| Tablespace | DEFAULT |
| Description |
CREATE OR REPLACE VIEW core.unit_view
AS
SELECT units.unit_id,
units.unit_code,
units.unit_name,
units.audit_user_id,
units.audit_ts
FROM core.units;