mirror of
https://github.com/not-kennethreitz/records-migrate.git
synced 2026-06-05 06:56:14 +00:00
10 lines
213 B
Python
10 lines
213 B
Python
from records import Database
|
|
from records_migrate.adapters import MigrationAdapter
|
|
|
|
db = Database()
|
|
a = MigrationAdapter(db=db)
|
|
print(a.last_migration_applied)
|
|
# a.init()
|
|
# for file in a.load():
|
|
# print(file)
|