Spaces:
Build error
Build error
File size: 248 Bytes
60e3a80 |
1 2 3 4 5 6 7 8 |
-- Records when database maintenance operations are performed.
-- At time of creation, this table is only used to record vacuum operations.
CREATE TABLE maintenance_log (
id INT PRIMARY KEY,
timestamp INT NOT NULL,
operation TEXT NOT NULL
);
|