Added timestamp colum to client_details

This commit is contained in:
Gleb Tcivie 2024-07-15 22:34:35 +03:00
parent fb034feee1
commit 90cda30d49

View file

@ -50,3 +50,6 @@ CREATE TABLE IF NOT EXISTS node_neighbors
);
CREATE UNIQUE INDEX idx_unique_node_neighbor ON node_neighbors (node_id, neighbor_id);
ALTER TABLE client_details
ADD COLUMN IF NOT EXISTS created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP;