Sign in
go
/
pkgsite
/
5c6053038b925662d98576f706f83af9316f6964
/
.
/
migrations
/
000152_add_search_documents_unit_id_unique.up.sql
blob: 4672cd5dd896a55113aa44c6638b1a0394ef949a [
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
;
CREATE
UNIQUE
INDEX
search_documents_unit_id_key
ON
search_documents
(
unit_id
);
END
;