Skip to content
New issue

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

Fix: Alterado inteiro de 32 para 64 bits do twitter_id #41

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/db_sample.sql
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ DROP TABLE IF EXISTS `streamers`;
CREATE TABLE `streamers` (
`id` int(16) unsigned NOT NULL AUTO_INCREMENT,
`twitch_id` int(32) unsigned NOT NULL,
`twitter_id` int(32) unsigned DEFAULT NULL,
`twitter_id` int(64) unsigned DEFAULT NULL,
`name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
Expand Down