main

mattermost/focalboard

Last updated at: 29/12/2023 09:42

000006_sharing_table.up.sql

TLDR

This file contains an SQL script that creates a table named "sharing" with several columns. It also sets the primary key for the table.

CREATE TABLE IF NOT EXISTS {{.prefix}}sharing (
	id VARCHAR(36),
	enabled BOOLEAN,
	token VARCHAR(100),
	modified_by VARCHAR(36),
	update_at BIGINT,
	PRIMARY KEY (id)
) {{if .mysql}}DEFAULT CHARACTER SET utf8mb4{{end}};