Skip to content

Commit e44df5e

Browse files
committed
Add marshmallow-sqlalchemy doc ref URL
1 parent 6400f5e commit e44df5e

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

src/models/AuthorModel.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
class AuthorModel(Base):
1313
"""
1414
Author Model
15+
https://marshmallow-sqlalchemy.readthedocs.io/en/latest/
1516
"""
1617
__tablename__ = 'authors'
1718
id: Mapped[int] = mapped_column(Integer, primary_key=True)

src/models/BookModel.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class BookModel(Base):
1111
"""
1212
Book Model
13+
https://marshmallow-sqlalchemy.readthedocs.io/en/latest/
1314
"""
1415
__tablename__ = "books"
1516
id: Mapped[int] = mapped_column(Integer, primary_key=True)

src/models/UserModel.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class UserModel(Base):
1111
"""
1212
User Model
13+
https://marshmallow-sqlalchemy.readthedocs.io/en/latest/
1314
"""
1415
__tablename__ = 'users'
1516
id: Mapped[int] = mapped_column(Integer, primary_key=True)

0 commit comments

Comments
 (0)