forked from altran/Valuereporter
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#12 Support for userLogon and userSession UserActivity.
- Loading branch information
Showing
3 changed files
with
18 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/main/resources/db/migration/mysql/V2__Create_UserActivityTables.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
use ValueReporter; | ||
CREATE TABLE IF NOT EXISTS userLogon ( | ||
id bigint auto_increment primary key, | ||
starttime TIMESTAMP NOT NULL, | ||
userid varchar(255) NOT NULL | ||
); | ||
|
||
CREATE TABLE IF NOT EXISTS userSession ( | ||
id bigint auto_increment primary key, | ||
starttime TIMESTAMP NOT NULL, | ||
userid varchar(255) NOT NULL, | ||
usersessionfunction varchar(255), | ||
applicationtokenid varchar(255) NOT NULL, | ||
applicationid varchar(255) NOT NULL | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters