We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
mysql table structure need to be updated accordingly.
admin.sql
avatar COLUMN added
# Dump of table user # ------------------------------------------------------------ DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gender` tinyint(4) DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avatar` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */;
Some other tables or codes may need to be altered accordingly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Brief Description
mysql table structure need to be updated accordingly.
Target File
Possible Codes May Help (partial not all)
avatar COLUMN added
The text was updated successfully, but these errors were encountered: