Humpback.Tests.TestMigrationProvider.GetMigrations C# (CSharp) Method

GetMigrations() public method

public GetMigrations ( ) : string>.SortedDictionary
return string>.SortedDictionary
        public SortedDictionary<int, string> GetMigrations()
        {
            var rv = new SortedDictionary<int, string>();
            foreach (var key in functions_dictionary.Keys) {
                rv.Add(key, key + "xxx.sql");
            }
            return rv;
        }