fixed cache Refactoring from app router to page router Refactoring from app router to page router Add authentication with JWT base ui done protect the dashboard added transitions styling type trick added cleanup Add enable-disable logic add transactional emails Improvements on delay and frontend added description on select implement auth with magic link migrate to mariadb webhook signature working Adding async processing with queues Implemented webhook reply functionality Add son execution logs update status logic Add recent activity monitoring to sons show son performance in dashboard add readme implement listmonk connector listmonk-connector-v1 Create CODE_OF_CONDUCT.md Create LICENSE
13 lines
No EOL
409 B
SQL
13 lines
No EOL
409 B
SQL
CREATE TABLE webhook_logs (
|
|
id VARCHAR(36) PRIMARY KEY,
|
|
user_id VARCHAR(36) NOT NULL,
|
|
timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
|
method VARCHAR(10) NOT NULL,
|
|
path VARCHAR(255) NOT NULL,
|
|
headers TEXT NOT NULL,
|
|
body TEXT NOT NULL,
|
|
status_code INT NOT NULL,
|
|
response_body TEXT,
|
|
duration INT NOT NULL,
|
|
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE
|
|
); |