diff --git a/refinery_core/src/util.rs b/refinery_core/src/util.rs index 4b416f45..c8d2804c 100644 --- a/refinery_core/src/util.rs +++ b/refinery_core/src/util.rs @@ -78,6 +78,7 @@ pub fn find_migration_files( let re = migration_type.file_match_re(); let file_paths = WalkDir::new(location) + .sort_by_file_name() .into_iter() .filter_map(Result::ok) .map(DirEntry::into_path)