Remove vestigial database model

mia/0x0#72 (comment)
This commit is contained in:
Emi Simpson 2022-11-28 16:43:34 -05:00
parent 55ee3740b0
commit 60db7938c8
No known key found for this signature in database
GPG Key ID: 45E9C6E81BD86E7C
1 changed files with 0 additions and 9 deletions

View File

@ -37,15 +37,6 @@ def get_max_lifespan(filesize: int) -> int:
max_size = current_app.config.get("MAX_CONTENT_LENGTH", 256 * 1024 * 1024)
return min_exp + int((-max_exp + min_exp) * (filesize / max_size - 1) ** 3)
db = SQLAlchemy(current_app.__weakref__())
# Representation of the updated (future) File table
UpdatedFile = sa.table('file',
# We only need to describe the columns that are relevent to us
sa.column('id', db.Integer),
sa.column('expiration', db.BigInteger)
)
Base = automap_base()
def upgrade():