* Revert "POC: Cross-team recent search (#20027)"

This reverts commit aa59c28b04, preserving
a few code tidyings unrelated to the original PR.

* Revert "Add feature flag for command palette (#20011)"

This reverts commit c78c5ce3f3.
Этот коммит содержится в:
Jesse Hallam
2023-07-24 10:31:06 -03:00
коммит произвёл GitHub
родитель c35777194d
Коммит 89e65257a6
26 изменённых файлов: 49 добавлений и 432 удалений

Просмотреть файл

@@ -1 +1,2 @@
DROP TABLE IF EXISTS RecentSearches;
-- This table is unused, and will be dropped in a future ESR.
DROP TABLE IF EXISTS RecentSearches;

Просмотреть файл

@@ -1,7 +1,8 @@
-- This table is unused, and will be dropped in a future ESR.
CREATE TABLE IF NOT EXISTS RecentSearches (
UserId CHAR(26),
SearchPointer int,
Query json,
CreateAt bigint NOT NULL,
PRIMARY KEY (UserId, SearchPointer)
);
);

Просмотреть файл

@@ -1 +1,2 @@
DROP TABLE IF EXISTS recentsearches;
-- This table is unused, and will be dropped in a future ESR.
DROP TABLE IF EXISTS recentsearches;

Просмотреть файл

@@ -1,7 +1,8 @@
-- This table is unused, and will be dropped in a future ESR.
CREATE TABLE IF NOT EXISTS recentsearches (
userid CHAR(26),
searchpointer int,
query jsonb,
createat bigint NOT NULL,
PRIMARY KEY (userid, searchpointer)
);
);