Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
906 B
SQL
29 lines
906 B
SQL
CREATE TABLE IF NOT EXISTS commands (
|
|
id VARCHAR(26) PRIMARY KEY,
|
|
token VARCHAR(26),
|
|
createat bigint,
|
|
updateat bigint,
|
|
deleteat bigint,
|
|
creatorid VARCHAR(26),
|
|
teamid VARCHAR(26),
|
|
trigger VARCHAR(128),
|
|
method VARCHAR(1),
|
|
username VARCHAR(64),
|
|
iconurl VARCHAR(1024),
|
|
autocomplete bool,
|
|
autocompletedesc VARCHAR(1024),
|
|
autocompletehint VARCHAR(1024),
|
|
displayname VARCHAR(64),
|
|
description VARCHAR(128),
|
|
url VARCHAR(1024)
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_command_team_id ON commands (teamid);
|
|
CREATE INDEX IF NOT EXISTS idx_command_update_at ON commands (updateat);
|
|
CREATE INDEX IF NOT EXISTS idx_command_create_at ON commands (createat);
|
|
CREATE INDEX IF NOT EXISTS idx_command_delete_at ON commands (deleteat);
|
|
|
|
ALTER TABLE commands ADD COLUMN IF NOT EXISTS pluginid VARCHAR(190);
|
|
|
|
UPDATE commands SET pluginid = '' WHERE pluginid IS NULL;
|