11 lines
402 B
SQL
11 lines
402 B
SQL
-- Ticket #168 — Couple de garde courant (préférence parent)
|
|
-- Idempotent : safe à rejouer.
|
|
|
|
ALTER TABLE parents
|
|
ADD COLUMN IF NOT EXISTS id_placement_garde_courant UUID
|
|
REFERENCES enfants_assistantes_maternelles(id) ON DELETE SET NULL;
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_parents_placement_garde_courant
|
|
ON parents(id_placement_garde_courant)
|
|
WHERE id_placement_garde_courant IS NOT NULL;
|