SQL File
SQL file for "Advanced Promocode Creator" script
Copy the following code and run the query in your phpMyAdmin/HeidiSQL/...:
CREATE TABLE `promocodes` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`promocode` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
`data` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
PRIMARY KEY (`id`) USING BTREE
)
COLLATE='utf8mb3_general_ci'
ENGINE=InnoDB
AUTO_INCREMENT=1;
Last updated