Skip to content

Commit

Permalink
fixup! add vector_search_suggestions table
Browse files Browse the repository at this point in the history
  • Loading branch information
struan committed Oct 29, 2024
1 parent 3fc6df3 commit 0365efa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ CREATE TABLE `postcode_lookup` (
PRIMARY KEY (`postcode`)
);

CREATE TABLE `vector_search_suggestions` )
CREATE TABLE `vector_search_suggestions` (
`search_term` varchar(100) NOT NULL default '',
`search_suggestion` varchar(100) NOT NULL default '',
KEY `search_term` (`search_term`)
Expand Down

0 comments on commit 0365efa

Please sign in to comment.