Skip to content

Commit

Permalink
updated table creation query
Browse files Browse the repository at this point in the history
  • Loading branch information
vb2007 committed May 24, 2024
1 parent 4c81dea commit 59814d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sql/log/table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ CREATE TABLE IF NOT EXISTS `log` (
`id` BIGINT NOT NULL AUTO_INCREMENT,
`commandName` TEXT(50),
`executorUserName` TEXT,
`executorUserId` INT,
`executorUserId` BIGINT,
`isInServer` BOOLEAN,
`serverName` TEXT,
`serverId` INT,
`serverId` BIGINT,
`channelName` TEXT,
`channelId` INT,
`channelId` BIGINT,
`time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`response` TEXT,
PRIMARY KEY (`id`)
Expand Down

0 comments on commit 59814d8

Please sign in to comment.