Files
mcp-vultr/not_used/extracted_backup/theme.sql

30 lines
1.6 KiB
SQL

#
# TABLE STRUCTURE FOR: theme
#
DROP TABLE IF EXISTS `theme`;
CREATE TABLE `theme` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`dark_mode` int(11) NOT NULL,
`nav_active` text NOT NULL,
`primary-color` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
INSERT INTO `theme` (`id`, `user_id`, `dark_mode`, `nav_active`, `primary-color`) VALUES (1, 55, 1, '', '');
INSERT INTO `theme` (`id`, `user_id`, `dark_mode`, `nav_active`, `primary-color`) VALUES (2, 1, 1, '', '');
INSERT INTO `theme` (`id`, `user_id`, `dark_mode`, `nav_active`, `primary-color`) VALUES (3, 57, 1, '', '');
INSERT INTO `theme` (`id`, `user_id`, `dark_mode`, `nav_active`, `primary-color`) VALUES (4, 30, 1, '', '');
INSERT INTO `theme` (`id`, `user_id`, `dark_mode`, `nav_active`, `primary-color`) VALUES (5, 59, 1, '', '');
INSERT INTO `theme` (`id`, `user_id`, `dark_mode`, `nav_active`, `primary-color`) VALUES (6, 74, 1, '', '');
INSERT INTO `theme` (`id`, `user_id`, `dark_mode`, `nav_active`, `primary-color`) VALUES (7, 81, 1, '', '');
INSERT INTO `theme` (`id`, `user_id`, `dark_mode`, `nav_active`, `primary-color`) VALUES (8, 84, 1, '', '');
INSERT INTO `theme` (`id`, `user_id`, `dark_mode`, `nav_active`, `primary-color`) VALUES (9, 90, 1, '', '');
INSERT INTO `theme` (`id`, `user_id`, `dark_mode`, `nav_active`, `primary-color`) VALUES (10, 97, 1, '', '');
INSERT INTO `theme` (`id`, `user_id`, `dark_mode`, `nav_active`, `primary-color`) VALUES (11, 112, 1, '', '');
INSERT INTO `theme` (`id`, `user_id`, `dark_mode`, `nav_active`, `primary-color`) VALUES (12, 36, 1, '', '');