1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-17 18:31:15 +00:00

Add Flask-Migrate

This commit is contained in:
Mo 2022-05-29 18:13:28 +02:00
parent 1398a9bb92
commit 24c9f44b25
3 changed files with 7 additions and 0 deletions

3
.gitignore vendored
View file

@ -17,3 +17,6 @@ poetry.lock
# Nginx
advlabdb.conf
# Flask-Migrate
migrations/

View file

@ -5,6 +5,7 @@ from flask_admin import Admin
from flask_security import Security, SQLAlchemyUserDatastore
from flask_security.models import fsqla_v2 as fsqla
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from dotenv import load_dotenv
@ -39,6 +40,8 @@ db = SQLAlchemy(app)
fsqla.FsModels.set_db_info(db)
migrate = Migrate(app, db)
from . import customClasses
adminSpace = Admin(

View file

@ -18,6 +18,7 @@ numpy = ">=1.22.3"
python-dotenv = ">=0.20.0"
gunicorn = ">=20.1.0"
email-validator = ">=1.2.1"
Flask-Migrate = ">=3.1.0"
[tool.poetry.dev-dependencies]