From 9109ab3283c5e55412a9b9a2b6ce98916995ac8a Mon Sep 17 00:00:00 2001 From: SvyatoslavArtymovych Date: Fri, 21 Apr 2023 17:19:28 +0300 Subject: [PATCH] remove comments --- app/models/book_contributor.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/models/book_contributor.py b/app/models/book_contributor.py index 85e3b83..fdce3d6 100644 --- a/app/models/book_contributor.py +++ b/app/models/book_contributor.py @@ -4,13 +4,6 @@ from app import db from app.models.utils import BaseModel -# Table book_contributors { -# book_id int [ref: > books.id] -# user_id int [ref: > users.id] -# role contributors_role -# } - - class BookContributor(BaseModel): __tablename__ = "book_contributors"