We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4445730 + 91489eb commit 1d81e8bCopy full SHA for 1d81e8b
src/masoniteorm/migrations/Migration.py
@@ -60,7 +60,7 @@ def get_unran_migrations(self):
60
all_migrations = [
61
f.replace(".py", "")
62
for f in listdir(directory_path)
63
- if isfile(join(directory_path, f)) and f != "__init__.py"
+ if isfile(join(directory_path, f)) and f != "__init__.py" and not f.startswith('.')
64
]
65
all_migrations.sort()
66
unran_migrations = []
@@ -107,7 +107,7 @@ def get_ran_migrations(self):
107
108
109
110
111
112
113
ran = []
0 commit comments