13 lines
		
	
	
		
			244 B
		
	
	
	
		
			PL/PgSQL
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			244 B
		
	
	
	
		
			PL/PgSQL
		
	
	
	
	
	
| BEGIN;
 | |
| 
 | |
| CREATE TABLE "device_skip" (
 | |
|   "backend" text NOT NULL,
 | |
|   "device" inet NOT NULL,
 | |
|   "action" text NOT NULL,
 | |
|   "deferrals" integer DEFAULT 0,
 | |
|   "skipover"  boolean DEFAULT false,
 | |
|   PRIMARY KEY ("backend", "device", "action")
 | |
| );
 | |
| 
 | |
| COMMIT;
 |