Sign in
go
/
pkgsite
/
af3438a08f6a0ab634ddd6fa53e60a41ba90209a
/
.
/
migrations
/
000117_add_search_documents_path_tokens.up.sql
blob: 0d85bb3990c3b1ea681abfc8e4b454ff279044e7 [
file
] [
log
] [
blame
]
-- Copyright 2021 The Go Authors. All rights reserved.
-- Use of this source code is governed by a BSD-style
-- license that can be found in the LICENSE file.
BEGIN
;
ALTER
TABLE
search_documents
ADD
COLUMN
path_tokens TEXT
;
END
;