Sign in
go
/
pkgsite
/
aca0f94d246aa9facb22134ab920ac3c1f12237e
/
.
/
migrations
/
000007_add_readme_package_imports_documentation_tables.down.sql
blob: 52f605edb7e9131da197057c95f9a1aa34a0745f [
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
;
DROP
TABLE
readmes
;
DROP
TABLE
documentation
;
DROP
TABLE
package_imports
;
END
;