first commit

This commit is contained in:
Tomas Dvorak
2026-04-13 17:46:58 +02:00
commit 6e8fedf534
234 changed files with 53808 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
class Migration:
"""
Base migration class.
"""
enabled: bool = True
@staticmethod
def migrate():
"""
Code to run when migrating, override this method.
"""
pass