Skip to content

Commit

Permalink
Script changes for server deletion issue fixes (#6882)
Browse files Browse the repository at this point in the history
Signed-off-by: sonali wale <sonali.wale@progress.com>
  • Loading branch information
sonali523 authored and vinay033 committed May 12, 2022
1 parent d9bc6a5 commit eaa7171
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ALTER TABLE servers ADD COLUMN credential_id TEXT NOT NULL DEFAULT '';
-- create table users
CREATE TABLE IF NOT EXISTS users (
id SERIAL PRIMARY KEY,
server_id TEXT NOT NULL references servers(id) ON DELETE RESTRICT,
server_id TEXT NOT NULL references servers(id) ON DELETE CASCADE,
infra_server_username TEXT NOT NULL DEFAULT '',
connector TEXT NOT NULL DEFAULT 'local',
automate_user_id TEXT NOT NULL DEFAULT '',
Expand Down

0 comments on commit eaa7171

Please sign in to comment.