7 lines
339 B
SQL
7 lines
339 B
SQL
-- Migration: remove session_start_offset_min from agenda_configuracoes
|
|
-- This field is replaced by hora_inicio in agenda_regras_semanais (work schedule per day)
|
|
-- The first session slot is now derived directly from hora_inicio of the work rule.
|
|
|
|
ALTER TABLE public.agenda_configuracoes
|
|
DROP COLUMN IF EXISTS session_start_offset_min;
|