Skip to content

Commit

Permalink
remove unecessary table
Browse files Browse the repository at this point in the history
  • Loading branch information
Javagedes committed Sep 19, 2023
1 parent 0d1960b commit 3da9deb
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions edk2toollib/database/tables/inf_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@
);
'''

CREATE_LIBRARY_CLASS_TABLE = '''
CREATE TABLE IF NOT EXISTS library_class (
class TEXT
)
'''

INSERT_JUNCTION_ROW = '''
INSERT INTO junction (env, table1, key1, table2, key2)
VALUES (?, ?, ?, ?, ?)
Expand Down Expand Up @@ -61,7 +55,6 @@ def __init__(self, *args, **kwargs):
def create_tables(self, db_cursor: Cursor) -> None:
"""Create the tables necessary for this parser."""
db_cursor.execute(CREATE_INF_TABLE)
db_cursor.execute(CREATE_LIBRARY_CLASS_TABLE)

def parse(self, db_cursor: Cursor, pathobj: Edk2Path, env_id: str, env: dict) -> None:
"""Parse the workspace and update the database."""
Expand Down

0 comments on commit 3da9deb

Please sign in to comment.