* Revert "POC: Cross-team recent search (#20027)" This reverts commitaa59c28b04, preserving a few code tidyings unrelated to the original PR. * Revert "Add feature flag for command palette (#20011)" This reverts commitc78c5ce3f3.
9 строки
240 B
SQL
9 строки
240 B
SQL
-- 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)
|
|
);
|