i18n: fix string with variables format
This commit is contained in:
parent
50ae94c9e9
commit
6b8fb3b470
12 changed files with 115 additions and 22 deletions
9
src/snapshots/models.py
Normal file
9
src/snapshots/models.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
from sqlalchemy.orm import Mapped
|
||||
|
||||
from src.models import CustomBase, IdMixin
|
||||
|
||||
|
||||
class Snapshot(CustomBase, IdMixin):
|
||||
__tablename__ = "snapshot"
|
||||
|
||||
url: Mapped[str]
|
||||
Loading…
Add table
Add a link
Reference in a new issue