Skip to content

Commit

Permalink
create the tables in sqlalchemy
Browse files Browse the repository at this point in the history
  • Loading branch information
rpiazza committed Apr 16, 2024
1 parent dc69b75 commit d15be96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stix2/datastore/relational_db/relational_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ def __init__(
database_connection = create_engine(database_connection_url)
print(database_connection)
self.metadata = MetaData()
# create_table_objects(
# self.metadata, stix_object_classes,
# )
create_table_objects(
self.metadata, stix_object_classes,
)

super().__init__(
source=RelationalDBSource(
Expand Down

0 comments on commit d15be96

Please sign in to comment.