Spaces:
Running
Running
add drop tables at first so the system does not show any error due to the repetitive tables
Browse files- schema.sql +3 -0
schema.sql
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
CREATE TABLE api_configurations (
|
2 |
id SERIAL PRIMARY KEY,
|
3 |
mcp_api_key VARCHAR(255) NOT NULL,
|
|
|
1 |
+
DROP TABLE IF EXISTS api_call_results;
|
2 |
+
DROP TABLE IF EXISTS api_configurations;
|
3 |
+
|
4 |
CREATE TABLE api_configurations (
|
5 |
id SERIAL PRIMARY KEY,
|
6 |
mcp_api_key VARCHAR(255) NOT NULL,
|