Skip to content

Commit

Permalink
one more index
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-finley committed Mar 11, 2024
1 parent cb7379e commit 74ec329
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ddl.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ CREATE TABLE "dropbox" (
PRIMARY KEY ("id"),
UNIQUE KEY "desktop_path" ("desktop_path"),
KEY "filename_index" ("filename"),
KEY "status_index" ("status")
);
KEY "status_index" ("status"),
KEY "created_at_desc_idx" ("created_at" DESC)
)

CREATE TABLE "dropbox_cursors" (
"id" int NOT NULL AUTO_INCREMENT,
Expand Down

0 comments on commit 74ec329

Please sign in to comment.