You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/db/schema/migrations/oss/postgres/21/02_session.up.sql

12 lines
376 B

-- Copyright (c) HashiCorp, Inc.
-- SPDX-License-Identifier: BUSL-1.1
begin;
alter table session_connection
-- intentionally null because we don't know the user_client_ip when the
-- session is created by the controller. The worker will update the session
-- with the user_client_ip after the user establishes a connection.
add column user_client_ip inet;
commit;