DBHunter
Infinity Member
Golden Member
- Joined
- August 23, 2025
- Messages
- 2,212
- Reaction score
- 4,596
- Points
- 113
- Thread Author
- #1
WordPress Database wishmaker.sql
Click to Download
Sample
Code:
Click to Download
To see this hidden content, you need to "Reply & React" with one of the following reactions:
Like,
Love,
Haha,
Wow
Code:
Code:
`wp_users` (
`ID` bigint(20) UNSIGNED NOT NULL,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(255) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'goodluck', '$P$B67yJ11bT1/QR.W74S.o2fWOeVKlaD.', 'goodluck', 'somecoderdude@gmail.com', 'http://localhost/wishmaker', '2024-08-16 07:03:09', '', 0, 'goodluck');