We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c01e8e commit 0922275Copy full SHA for 0922275
github_stats_pages/models/__init__.py
@@ -1,3 +1,4 @@
1
from .clone import Clone # noqa: F401
2
from .referring import Referring # noqa: F401
3
+from .paths import Paths # noqa: F401
4
from .traffic import Traffic # noqa: F401
github_stats_pages/models/paths.py
@@ -0,0 +1,12 @@
+from typing import Optional
+
+from sqlmodel import SQLModel, Field
5
6
+class Paths(SQLModel, table=True):
7
+ id: Optional[int] = Field(default=None, primary_key=True)
8
+ date: str
9
+ path: str
10
+ title: str
11
+ views: int
12
+ unique_views: int
0 commit comments