gitpod/install/installer/pkg/components/database/init/files/00-create-and-init-sessions-db.sql
Milan Pavlik bf947d1260
[db] Drop sessions table & db - WEB-106 (#17862)
* retest

* add ws handler

* retest

* fix

* clean up

* [db] Drop sessions table & db

* add comments
2023-06-08 16:32:59 +08:00

18 lines
718 B
SQL

-- Copyright (c) 2020 Gitpod GmbH. All rights reserved.
-- Licensed under the GNU Affero General Public License (AGPL). See License.AGPL.txt in the project root for license information.
-- must be idempotent
CREATE DATABASE IF NOT EXISTS `gitpod-sessions` CHARSET utf8mb4;
USE `gitpod-sessions`;
-- This removed again in later migration - in pkg/components/database/incluster/init/04-drop-sessions-db.sql
CREATE TABLE IF NOT EXISTS sessions (
`session_id` varchar(128) COLLATE utf8mb4_bin NOT NULL,
`expires` int(11) unsigned NOT NULL,
`data` text COLLATE utf8mb4_bin,
`_lastModified` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6),
PRIMARY KEY (`session_id`)
);