We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Good evening, I would like to know how we put and or the tables in mysql and I try to put them but always the same
(can you provide me screenshoots so that I can understand thank you very much)
https://prnt.sc/v1wlz6
The text was updated successfully, but these errors were encountered:
Hope this helps
mysql -u root -p
use im_1;
CREATE TABLE `scheduledActions` ( `id` int(11) NOT NULL, `actionType` enum('unmute') COLLATE utf8mb4_unicode_ci DEFAULT NULL, `args` json DEFAULT NULL, `date` datetime DEFAULT NULL, `reason` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `guildId` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `createdAt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updatedAt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
ALTER TABLE `scheduledActions` ADD PRIMARY KEY (`id`), ADD KEY `guildId` (`guildId`);
ALTER TABLE `scheduledActions` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
Sorry, something went wrong.
No branches or pull requests
Good evening, I would like to know how we put and or the tables in mysql and I try to put them but always the same
(can you provide me screenshoots so that I can understand thank you very much)
https://prnt.sc/v1wlz6
The text was updated successfully, but these errors were encountered: