Sign in
go
/
pkgsite
/
45eb07be8a5a4e91afe53a98524791d4729a2584
/
.
/
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
;