Sign in
go
/
pkgsite
/
5e1bf620d930fac4d46bb87fbde026b0985f85d8
/
.
/
migrations
/
000002_add_modules_identity.up.sql
blob: b545ec417a58d4b01022bf344d80d6f01df3fad9 [
file
] [
log
] [
blame
]
-- Copyright 2020 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
modules
ADD
COLUMN
id integer GENERATED ALWAYS
AS
IDENTITY
UNIQUE
;
END
;