forked from polka_billy/porridger
begin implementing async
This commit is contained in:
6
back/delete_db.py
Normal file
6
back/delete_db.py
Normal file
@ -0,0 +1,6 @@
|
||||
from sqlalchemy import Table, MetaData, text
|
||||
from .db import engine, Base
|
||||
|
||||
tbl = Table('Poems', MetaData(), autoload_with=engine)
|
||||
tbl.drop(engine, checkfirst=False)
|
||||
a = input()
|
Reference in New Issue
Block a user