File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 12
12
# Create the Flask application
13
13
app = Flask (__name__ )
14
14
app .config ['DEBUG' ] = True
15
- app .config ['SQLALCHEMY_TRACK_MODIFICATIONS' ] = False
16
15
17
16
# Initialize SQLAlchemy
18
17
app .config ['SQLALCHEMY_DATABASE_URI' ] = 'sqlite:////tmp/api.db'
18
+ app .config ['SQLALCHEMY_TRACK_MODIFICATIONS' ] = False
19
19
db = SQLAlchemy (app )
20
20
21
21
Original file line number Diff line number Diff line change 13
13
# Create the Flask application
14
14
app = Flask (__name__ )
15
15
app .config ['DEBUG' ] = True
16
- app .config ['SQLALCHEMY_TRACK_MODIFICATIONS' ] = False
17
16
18
17
# Initialize SQLAlchemy
19
18
app .config ['SQLALCHEMY_DATABASE_URI' ] = 'sqlite:////tmp/api_nested.db'
19
+ app .config ['SQLALCHEMY_TRACK_MODIFICATIONS' ] = False
20
20
db = SQLAlchemy (app )
21
21
22
22
You can’t perform that action at this time.
0 commit comments