Added timestamp colum to client_details
This commit is contained in:
parent
fb034feee1
commit
90cda30d49
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue