6 lines
236 B
MySQL
6 lines
236 B
MySQL
|
-- Add column to toggle genealogy
|
||
|
ALTER TABLE public.families
|
||
|
ADD enable_genealogy boolean NOT NULL DEFAULT false;
|
||
|
COMMENT
|
||
|
ON COLUMN public.families.enable_genealogy IS 'Specify whether genealogy feature is enabled for the family';
|