Skip to content

Commit 2c619eb

Browse files
author
Donald Pinckney
committed
Remove backwards compatibility wrapper and complete migration
1 parent 2160b5e commit 2c619eb

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

PLAN.mermaid

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,3 +224,9 @@ class work8 completed;
224224
class validate2_4 inProgress;
225225
class validate2_4 completed;
226226
class pr7 inProgress;
227+
class pr7 completed;
228+
class work10 inProgress;
229+
class work10 completed;
230+
class validate2_5 inProgress;
231+
class validate2_5 completed;
232+
class pr8 inProgress;

manage.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
import os
22
from os.path import join, dirname
33
from dotenv import load_dotenv
4-
import click
5-
from flask_migrate import Migrate
6-
from app.models import db
7-
from server import app
84
from app.cli import cli
95

106
# Load environment variables
117
dotenv_path = join(dirname(__file__), '.env')
128
load_dotenv(dotenv_path)
139

14-
# Register app and db with migration class
15-
migrate = Migrate(app, db)
16-
1710
# This allows the file to be run directly with 'python manage.py'
1811
if __name__ == '__main__':
1912
cli()

0 commit comments

Comments
 (0)