mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-11-04 06:08:31 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			234 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			234 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
-- Table: public.annotations
 | 
						|
 | 
						|
-- DROP TABLE public.annotations;
 | 
						|
 | 
						|
CREATE TABLE public.annotations
 | 
						|
(
 | 
						|
  id text NOT NULL,
 | 
						|
  annotations xml,
 | 
						|
  CONSTRAINT annotations_id_key UNIQUE (id)
 | 
						|
);
 | 
						|
 | 
						|
GRANT ALL ON TABLE public.annotations TO kemal;
 |