mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
17 lines
608 B
SQL
17 lines
608 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`;
|
|
|
|
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`)
|
|
);
|