feat: Add review events persistence, version display, and auto-versioning system

This commit is contained in:
Primakov Alexandr Alexandrovich
2025-10-13 14:18:37 +03:00
parent cfba28f913
commit 2db1225618
56 changed files with 750 additions and 436 deletions
+2 -1
View File
@@ -4,7 +4,7 @@
import asyncio
from app.database import engine, Base
from app.models import Organization, ReviewTask, Repository, PullRequest, Review, Comment
from app.models import Organization, ReviewTask, Repository, PullRequest, Review, Comment, ReviewEvent
async def create_tables():
@@ -20,6 +20,7 @@ async def create_tables():
print(" - pull_requests")
print(" - reviews")
print(" - comments")
print(" - review_events")
if __name__ == "__main__":