Skip to content

Commit

Permalink
Merge branch '2.8' of github.com:oss-tsukuba/gfarm into 2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
otatebe committed Feb 17, 2025
2 parents 17c77eb + 32fae43 commit ecf83b7
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@ CREATE TABLE `tokens` (
PRIMARY KEY (`user`,`audience`)
);

DROP TABLE IF EXISTS token_time;

CREATE TABLE `token_time` (
`user` varchar(20) NOT NULL,
`login_at` bigint DEFAULT 0,
`logout_at` bigint DEFAULT 0,
PRIMARY KEY (`user`)
);

DROP TABLE IF EXISTS issues;

CREATE TABLE IF NOT EXISTS `issues` (
Expand Down

0 comments on commit ecf83b7

Please sign in to comment.