mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-394: Add guacamole_user_history table to database schema.
This commit is contained in:
@@ -351,6 +351,30 @@ CREATE TABLE `guacamole_connection_history` (
|
|||||||
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- User login/logout history
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE guacamole_user_history (
|
||||||
|
|
||||||
|
`history_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`user_id` int(11) DEFAULT NULL,
|
||||||
|
`username` varchar(128) NOT NULL,
|
||||||
|
`remote_host` varchar(256) DEFAULT NULL,
|
||||||
|
`start_date` datetime NOT NULL,
|
||||||
|
`end_date` datetime DEFAULT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (history_id),
|
||||||
|
KEY `user_id` (`user_id`),
|
||||||
|
KEY `start_date` (`start_date`),
|
||||||
|
KEY `end_date` (`end_date`),
|
||||||
|
|
||||||
|
CONSTRAINT guacamole_user_history_ibfk_1
|
||||||
|
FOREIGN KEY (user_id)
|
||||||
|
REFERENCES guacamole_user (user_id) ON DELETE SET NULL
|
||||||
|
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- User password history
|
-- User password history
|
||||||
--
|
--
|
||||||
|
@@ -37,3 +37,27 @@ ALTER TABLE guacamole_connection
|
|||||||
|
|
||||||
ALTER TABLE guacamole_connection_history
|
ALTER TABLE guacamole_connection_history
|
||||||
ADD COLUMN remote_host VARCHAR(256) DEFAULT NULL;
|
ADD COLUMN remote_host VARCHAR(256) DEFAULT NULL;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- User login/logout history
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE guacamole_user_history (
|
||||||
|
|
||||||
|
`history_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`user_id` int(11) DEFAULT NULL,
|
||||||
|
`username` varchar(128) NOT NULL,
|
||||||
|
`remote_host` varchar(256) DEFAULT NULL,
|
||||||
|
`start_date` datetime NOT NULL,
|
||||||
|
`end_date` datetime DEFAULT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (history_id),
|
||||||
|
KEY `user_id` (`user_id`),
|
||||||
|
KEY `start_date` (`start_date`),
|
||||||
|
KEY `end_date` (`end_date`),
|
||||||
|
|
||||||
|
CONSTRAINT guacamole_user_history_ibfk_1
|
||||||
|
FOREIGN KEY (user_id)
|
||||||
|
REFERENCES guacamole_user (user_id) ON DELETE SET NULL
|
||||||
|
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
@@ -438,6 +438,36 @@ CREATE INDEX guacamole_connection_history_start_date
|
|||||||
CREATE INDEX guacamole_connection_history_end_date
|
CREATE INDEX guacamole_connection_history_end_date
|
||||||
ON guacamole_connection_history(end_date);
|
ON guacamole_connection_history(end_date);
|
||||||
|
|
||||||
|
--
|
||||||
|
-- User login/logout history
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE guacamole_user_history (
|
||||||
|
|
||||||
|
history_id serial NOT NULL,
|
||||||
|
user_id integer DEFAULT NULL,
|
||||||
|
username varchar(128) NOT NULL,
|
||||||
|
remote_host varchar(256) DEFAULT NULL,
|
||||||
|
start_date timestamptz NOT NULL,
|
||||||
|
end_date timestamptz DEFAULT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (history_id),
|
||||||
|
|
||||||
|
CONSTRAINT guacamole_user_history_ibfk_1
|
||||||
|
FOREIGN KEY (user_id)
|
||||||
|
REFERENCES guacamole_user (user_id) ON DELETE SET NULL
|
||||||
|
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX guacamole_user_history_user_id
|
||||||
|
ON guacamole_user_history(user_id);
|
||||||
|
|
||||||
|
CREATE INDEX guacamole_user_history_start_date
|
||||||
|
ON guacamole_user_history(start_date);
|
||||||
|
|
||||||
|
CREATE INDEX guacamole_user_history_end_date
|
||||||
|
ON guacamole_user_history(end_date);
|
||||||
|
|
||||||
--
|
--
|
||||||
-- User password history
|
-- User password history
|
||||||
--
|
--
|
||||||
|
@@ -37,3 +37,33 @@ ALTER TABLE guacamole_connection
|
|||||||
|
|
||||||
ALTER TABLE guacamole_connection_history
|
ALTER TABLE guacamole_connection_history
|
||||||
ADD COLUMN remote_host VARCHAR(256) DEFAULT NULL;
|
ADD COLUMN remote_host VARCHAR(256) DEFAULT NULL;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- User login/logout history
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE guacamole_user_history (
|
||||||
|
|
||||||
|
history_id serial NOT NULL,
|
||||||
|
user_id integer DEFAULT NULL,
|
||||||
|
username varchar(128) NOT NULL,
|
||||||
|
remote_host varchar(256) DEFAULT NULL,
|
||||||
|
start_date timestamptz NOT NULL,
|
||||||
|
end_date timestamptz DEFAULT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (history_id),
|
||||||
|
|
||||||
|
CONSTRAINT guacamole_user_history_ibfk_1
|
||||||
|
FOREIGN KEY (user_id)
|
||||||
|
REFERENCES guacamole_user (user_id) ON DELETE SET NULL
|
||||||
|
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX guacamole_user_history_user_id
|
||||||
|
ON guacamole_user_history(user_id);
|
||||||
|
|
||||||
|
CREATE INDEX guacamole_user_history_start_date
|
||||||
|
ON guacamole_user_history(start_date);
|
||||||
|
|
||||||
|
CREATE INDEX guacamole_user_history_end_date
|
||||||
|
ON guacamole_user_history(end_date);
|
||||||
|
@@ -504,6 +504,37 @@ CREATE NONCLUSTERED INDEX [IX_guacamole_connection_history_end_date]
|
|||||||
ON [guacamole_connection_history] ([end_date]);
|
ON [guacamole_connection_history] ([end_date]);
|
||||||
GO
|
GO
|
||||||
|
|
||||||
|
--
|
||||||
|
-- User login/logout history
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE [guacamole_user_history] (
|
||||||
|
|
||||||
|
[history_id] [int] IDENTITY(1,1) NOT NULL,
|
||||||
|
[user_id] [int] DEFAULT NULL,
|
||||||
|
[username] [nvarchar](128) NOT NULL,
|
||||||
|
[remote_host] [nvarchar](256) DEFAULT NULL,
|
||||||
|
[start_date] [datetime] NOT NULL,
|
||||||
|
[end_date] [datetime] DEFAULT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (history_id),
|
||||||
|
|
||||||
|
CONSTRAINT FK_guacamole_user_history_user_id
|
||||||
|
FOREIGN KEY (user_id)
|
||||||
|
REFERENCES guacamole_user (user_id) ON DELETE SET NULL
|
||||||
|
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE NONCLUSTERED INDEX [IX_guacamole_user_history_user_id]
|
||||||
|
ON [guacamole_user_history] ([user_id]);
|
||||||
|
|
||||||
|
CREATE NONCLUSTERED INDEX [IX_guacamole_user_history_start_date]
|
||||||
|
ON [guacamole_user_history] ([start_date]);
|
||||||
|
|
||||||
|
CREATE NONCLUSTERED INDEX [IX_guacamole_user_history_end_date]
|
||||||
|
ON [guacamole_user_history] ([end_date]);
|
||||||
|
GO
|
||||||
|
|
||||||
--
|
--
|
||||||
-- The user_password_history table stores password history
|
-- The user_password_history table stores password history
|
||||||
-- for users, allowing for enforcing rules associated with
|
-- for users, allowing for enforcing rules associated with
|
||||||
|
Reference in New Issue
Block a user