1
0
Fork 0
forked from Simnation/Main
Main/resources/[creator]/trackers_creator/sql/private_frequencies.sql

10 lines
314 B
MySQL
Raw Normal View History

2025-06-07 08:51:21 +02:00
CREATE TABLE IF NOT EXISTS `trackers_creator_private_frequencies` (
`identifier` VARCHAR(100) NOT NULL COLLATE 'utf8mb4_general_ci',
`last_frequency` INT(11) NOT NULL,
PRIMARY KEY (`identifier`) USING BTREE,
INDEX `identifier` (`identifier`) USING BTREE
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
;