add index on timestamp column

This commit is contained in:
filifa 2024-03-19 20:31:32 -05:00
parent db1427bd69
commit e7835ed7ed
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;