Skip to content

Commit

Permalink
white space trim
Browse files Browse the repository at this point in the history
  • Loading branch information
tiftran committed Oct 4, 2023
1 parent a482d76 commit 21d0e77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/suggest/src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ pub const SQL: &str = "
) WITHOUT ROWID;
CREATE TABLE pocket_keywords(
keyword_prefix TEXT NOT NULL,
keyword_suffix TEXT NOT NULL DEFAULT '',
keyword_prefix TEXT NOT NULL,
keyword_suffix TEXT NOT NULL DEFAULT '',
confidence INTEGER NOT NULL,
rank INTEGER NOT NULL,
suggestion_id INTEGER NOT NULL REFERENCES suggestions(id),
suggestion_id INTEGER NOT NULL REFERENCES suggestions(id),
PRIMARY KEY (keyword_prefix, keyword_suffix, suggestion_id)
);
Expand Down

0 comments on commit 21d0e77

Please sign in to comment.