Humpback.Tests.TestMigrationProvider.GetMigrations C# (CSharp) 메소드

GetMigrations() 공개 메소드

public GetMigrations ( ) : string>.SortedDictionary
리턴 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;
        }