All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			Start our journey into turning GeneIT as afully featured family intranet by making genealogy a feature that can be disabled by family admins Reviewed-on: #175
		
			
				
	
	
		
			6 lines
		
	
	
		
			236 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			236 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
-- 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';
 |