Skip to content

Commit facc8fc

Browse files
committed
Fixed bug with key
1 parent d88f635 commit facc8fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

export-laravel-5-migrations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ def export_schema(out, schema, is_main_schema, table_tree):
444444
return 1
445445

446446
for name in sorted(migrations):
447-
out.write('Table name: {0}\n\n\n'.format(migration_tables[mkey]))
447+
out.write('Table name: {0}\n\n\n'.format(migration_tables[name]))
448448
out.write(''.join(migrations[name]))
449449
out.write('\n\n\n'.format(name))
450450

0 commit comments

Comments
 (0)