mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-01-09 21:27:53 -05:00
7 lines
133 B
Python
7 lines
133 B
Python
from dotenv import load_dotenv
|
|
load_dotenv()
|
|
from database.database import create_tables, drop_tables
|
|
|
|
drop_tables()
|
|
create_tables()
|