Skip to content

Commit 220d953

Browse files
committed
migrations: drop modules.deprecated_comment
For golang/go#43265 Change-Id: I5885853463ed52915a7956e66bdfae9498ce90df Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/309710 Trust: Jonathan Amsterdam <[email protected]> Run-TryBot: Jonathan Amsterdam <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Julie Qiu <[email protected]>
1 parent 6c2224a commit 220d953

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
-- Copyright 2021 The Go Authors. All rights reserved.
2+
-- Use of this source code is governed by a BSD-style
3+
-- license that can be found in the LICENSE file.
4+
5+
BEGIN;
6+
7+
ALTER TABLE modules
8+
ADD COLUMN deprecated_comment TEXT;
9+
10+
END;
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
-- Copyright 2021 The Go Authors. All rights reserved.
2+
-- Use of this source code is governed by a BSD-style
3+
-- license that can be found in the LICENSE file.
4+
5+
BEGIN;
6+
7+
ALTER TABLE modules
8+
DROP COLUMN deprecated_comment;
9+
10+
END;

0 commit comments

Comments
 (0)