Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/install/installer/pkg/components/database/init/files/02-drop-sessions-db.sql
2506 views
1
-- Copyright (c) 2020 Gitpod GmbH. All rights reserved.
2
-- Licensed under the GNU Affero General Public License (AGPL). See License.AGPL.txt in the project root for license information.
3
4
-- must be idempotent
5
6
USE `gitpod-sessions`;
7
8
DROP TABLE IF EXISTS `sessions`;
9
10
DROP DATABASE IF EXISTS `gitpod-sessions`;
11
12