mirror of https://github.com/OWASP/Nettacker.git
18 lines
504 B
Python
18 lines
504 B
Python
from sqlalchemy import create_engine
|
|
|
|
from nettacker.config import Config
|
|
from nettacker.database.models import Base
|
|
|
|
|
|
def sqlite_create_tables():
|
|
"""
|
|
when using sqlite database, this is the function that is used to create
|
|
the database schema for the first time when you run the nettacker module.
|
|
|
|
"""
|
|
db_engine = create_engine(
|
|
"sqlite:///{name}".format(**Config.db.as_dict()),
|
|
connect_args={"check_same_thread": False},
|
|
)
|
|
Base.metadata.create_all(db_engine)
|