add index on timestamp column

This commit is contained in:
Nick Griffey 2024-02-12 23:41:35 -06:00
parent ab910e266f
commit f0daafc5a8
1 changed files with 3 additions and 0 deletions

View File

@ -2366,4 +2366,7 @@ The Sun becomes a black dwarf.',NULL,'100 Ta 1 petaannus',NULL),
('Xenon-124 decays.',NULL,'10 100 Za',NULL), ('Xenon-124 decays.',NULL,'10 100 Za',NULL),
('Tellurium-128 decays.',NULL,'1 10 Ya',NULL), ('Tellurium-128 decays.',NULL,'1 10 Ya',NULL),
('Only solitary objects remain in the universe by this point.',NULL,'1 10 Qa',NULL); ('Only solitary objects remain in the universe by this point.',NULL,'1 10 Qa',NULL);
CREATE INDEX IF NOT EXISTS "timeline" ON "events" (
"timestamp"
);
COMMIT; COMMIT;