Browse Source
			
			
			Merge pull request #414 from FrankPetrilli/patch-1
			
				Minor typo fix conect => connect
			
			
				pull/486/head
			
			
		 
		
			
				
					
						 Daniel García
					
					7 years ago
						Daniel García
					
					7 years ago
					
						
							committed by
							
								 GitHub
								GitHub
							
						 
					
				 
				
			 
		 
		
			
				
					
					No known key found for this signature in database
					
						
							GPG Key ID: 4AEE18F83AFDEB23
						
					
				
			
		
		
		
	
		
			
				 1 changed files with 
1 additions and 
1 deletions
			 
			
		 
		
			
				- 
					
					
					 
					src/main.rs
				
				
				
					
						
							
								
									
	
		
			
				
					|  |  | @ -211,7 +211,7 @@ mod migrations { | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |     pub fn run_migrations() { | 
			
		
	
		
			
				
					|  |  |  |         // Make sure the database is up to date (create if it doesn't exist, or run the migrations)
 | 
			
		
	
		
			
				
					|  |  |  |         let connection = crate::db::get_connection().expect("Can't conect to DB"); | 
			
		
	
		
			
				
					|  |  |  |         let connection = crate::db::get_connection().expect("Can't connect to DB"); | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |         use std::io::stdout; | 
			
		
	
		
			
				
					|  |  |  |         embedded_migrations::run_with_output(&connection, &mut stdout()).expect("Can't run migrations"); | 
			
		
	
	
		
			
				
					|  |  | 
 |