From 64430a20ee7e70ba89d0b956faa856b4378170f5 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Wed, 22 Dec 2021 13:36:38 -0500 Subject: [PATCH] Removed Role ID from users table it was unused and was breaking the ability to add users --- db.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/db.sql b/db.sql index f898ae4f..a3948c95 100644 --- a/db.sql +++ b/db.sql @@ -1110,7 +1110,6 @@ CREATE TABLE `users` ( `user_created_at` datetime NOT NULL, `user_updated_at` datetime DEFAULT NULL, `user_archived_at` datetime DEFAULT NULL, - `role_id` int(11) NOT NULL, PRIMARY KEY (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1157,4 +1156,4 @@ CREATE TABLE `vendors` ( /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2021-12-22 13:04:22 +-- Dump completed on 2021-12-22 13:35:39