mirror of
git://f0xx.org/ac/ac-ms-remote-access
synced 2026-07-29 05:18:32 +03:00
9 lines
488 B
SQL
9 lines
488 B
SQL
-- RSSH session credentials (MariaDB). Idempotent ALTERs.
|
|
ALTER TABLE remote_access_sessions
|
|
ADD COLUMN IF NOT EXISTS rssh_bastion_host VARCHAR(255) NULL,
|
|
ADD COLUMN IF NOT EXISTS rssh_bastion_port INT UNSIGNED NULL,
|
|
ADD COLUMN IF NOT EXISTS rssh_username VARCHAR(64) NULL,
|
|
ADD COLUMN IF NOT EXISTS rssh_secret VARCHAR(128) NULL,
|
|
ADD COLUMN IF NOT EXISTS rssh_remote_port INT UNSIGNED NULL,
|
|
ADD COLUMN IF NOT EXISTS rssh_local_port INT UNSIGNED NULL DEFAULT 8022;
|