mirror of
				https://github.com/launchbadge/sqlx.git
				synced 2025-11-03 23:12:47 +00:00 
			
		
		
		
	* fix: ensure migration progress is not lost for PG Fixes #1966. * fix: ensure migration progress is not lost for sqlite This is similar to #1966. * fix: ensure reverse migration progress is not lost for PG See #1966. * fix: ensure reverse migration progress is not lost for sqlite See #1966. * fix: ensure migration progress is not lost for mysql This is similar to #1966. * fix: ensure reverse migration progress is not lost for mysql See #1966. * test: check migration type as well * test: extend migrations testing * fix: work around MySQL implicit commits * refactor: simplify migration testing
		
			
				
	
	
		
			8 lines
		
	
	
		
			200 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			200 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
CREATE TABLE migrations_reversible_test (
 | 
						|
    some_id BIGINT NOT NULL PRIMARY KEY,
 | 
						|
    some_payload BIGINT NOT NUll
 | 
						|
);
 | 
						|
 | 
						|
INSERT INTO migrations_reversible_test (some_id, some_payload)
 | 
						|
VALUES (1, 100);
 |