fix indenting

This commit is contained in:
Marshall Hallenbeck
2023-05-15 22:04:04 -04:00
parent fb874a06ed
commit 77abecd805
+5 -5
View File
@@ -50,11 +50,11 @@ class database:
FOREIGN KEY(hostid) REFERENCES hosts(id)
)""")
db_conn.execute("""CREATE TABLE "directory_listings" (
"id" integer PRIMARY KEY,
"lir_id" integer,
"data" text,
FOREIGN KEY(lir_id) REFERENCES loggedin_relations(id)
)""")
"id" integer PRIMARY KEY,
"lir_id" integer,
"data" text,
FOREIGN KEY(lir_id) REFERENCES loggedin_relations(id)
)""")
def reflect_tables(self):
with self.db_engine.connect():