-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbank_of_abel.sql
More file actions
56 lines (49 loc) · 2.94 KB
/
Copy pathbank_of_abel.sql
File metadata and controls
56 lines (49 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
-- MySQL dump 10.13 Distrib 8.0.41, for Linux (x86_64)
--
-- Host: localhost Database: broken_auth
-- ------------------------------------------------------
-- Server version 8.0.41
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
`id` int NOT NULL AUTO_INCREMENT,
`username` varchar(50) NOT NULL,
`password` varchar(255) NOT NULL,
`role` enum('admin','other_user') NOT NULL,
`balance` decimal(10,2) NOT NULL DEFAULT '0.00',
`ssn` char(11) NOT NULL DEFAULT '000-00-0000',
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'admin','admin','admin',0.00,'000-00-0000'),(2,'abel','qwerty123','other_user',93759572.67,'123-45-6789'),(3,'mgrayson','invincible','other_user',30.29,'385-23-1924'),(4,'omniman','passw0rd123!','other_user',204759.73,'999-99-9999'),(5,'fcastle','thePunisher@!','other_user',24702.29,'111-22-3333'),(6,'pparker','Sp00derMan#$','other_user',3.48,'222-33-4444'),(7,'tstark','marktw0arm0r#!@','other_user',74259572.67,'867-53-0909'),(8,'doom','DrD00MsPassw0rd','other_user',3497820.02,'777-77-7777'),(9,'john','br0ken_acc3ss','other_user',17.38,'454-54-5454'),(10,'root','root','admin',0.00,'000-00-0000'),(11,'dev','password','admin',0.00,'000-00-0000'),(12,'jane','doe','other_user',38401.49,'444-44-4444'),(13,'bgates','microsoft','other_user',99381548.00,'876-54-3210'),(14,'sjobs','@pp13','other_user',15.28,'323-23-2323');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2025-04-04 17:00:05