mirror of
				https://git.tt-rss.org/fox/tt-rss.git
				synced 2025-10-31 03:40:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			245 B
		
	
	
	
		
			PL/PgSQL
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			245 B
		
	
	
	
		
			PL/PgSQL
		
	
	
	
	
	
| begin;
 | |
| 
 | |
| alter table ttrss_archived_feeds add column created timestamp;
 | |
| update ttrss_archived_feeds set created = NOW();
 | |
| alter table ttrss_archived_feeds alter column created set not null;
 | |
| 
 | |
| update ttrss_version set schema_version = 136;
 | |
| 
 | |
| commit;
 |