We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 511a08d commit 2834e63Copy full SHA for 2834e63
src/mvt/database.py
@@ -135,7 +135,12 @@ def create_feedback_table(conn):
135
response_snippet TEXT,
136
reason TEXT,
137
timestamp TEXT
138
-# ==================== ADDITIONAL FUNCTIONS FOR OTHER TABLES ====================
+ );'''
139
+ # ==================== ADDITIONAL FUNCTIONS FOR OTHER TABLES ====================
140
+ conn.cursor().execute(sql)
141
+ conn.commit()
142
+ except sqlite3.Error as e:
143
+ print(e)
144
145
def create_response_table(conn):
146
"""Create a table to store responses"""
0 commit comments