Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Javagedes committed Sep 25, 2023
1 parent e08a10c commit 7bd23c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions edk2toollib/database/tables/instanced_inf_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class TEXT,
component TEXT,
instanced_inf1 TEXT,
instanced_inf2 TEXT,
FOREIGN KEY(env) REFERENCES environment(env),
FOREIGN KEY(env) REFERENCES environment(env)
);
'''

Expand All @@ -58,7 +58,7 @@ class TEXT,

INSERT_INSTANCED_INF_ROW = '''
INSERT INTO instanced_inf (env, path, class, name, arch, dsc, component)
VALUES (?, ?, ?, ?, ?, ?, ?)
VALUES (?, ?, ?, ?, ?, ?, ?);
'''

INSERT_INF_TABLE_JUNCTION_ROW = '''
Expand Down

0 comments on commit 7bd23c2

Please sign in to comment.