9 lines
330 B
SQL
9 lines
330 B
SQL
-- =============================================================
|
|
-- V067__asset_heat_pump_site_index.sql
|
|
-- Zrychlení filtrování asset_heat_pump podle site_id (PostgREST).
|
|
-- =============================================================
|
|
|
|
create index if not exists idx_asset_heat_pump_site
|
|
on ems.asset_heat_pump (site_id);
|
|
|