CREATE DATABASE  IF NOT EXISTS `test_db` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
USE `test_db`;
-- MySQL dump 10.13  Distrib 8.0.33, for Win64 (x86_64)
--
-- Host: localhost    Database: test_db
-- ------------------------------------------------------
-- Server version	8.0.33

/*!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 utf8 */;
/*!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 `modules`
--

DROP TABLE IF EXISTS `modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `modules` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `description` varchar(250) NOT NULL,
  `status` varchar(25) NOT NULL,
  `createdAt` datetime NOT NULL,
  `updatedAt` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `modules`
--

LOCK TABLES `modules` WRITE;
/*!40000 ALTER TABLE `modules` DISABLE KEYS */;
INSERT INTO `modules` VALUES (1,'Bank','This is Bank Masters module','Active','2025-03-17 11:23:14','2025-03-17 11:23:14'),(2,'Bank Branch','This is Bank Branch Masters module','Active','2025-03-17 11:23:38','2025-03-17 11:23:38'),(3,'Bank Account','This is Bank Account Masters module','Active','2025-03-17 11:23:56','2025-03-17 11:23:56'),(4,'Billable','This is Billable Masters module','Active','2025-03-17 11:24:14','2025-03-17 11:24:14'),(5,'Entity','This is Entity Masters module','Active','2025-03-17 11:24:37','2025-03-17 11:24:37'),(6,'Payee Entity','This is Payee Entity Masters module','Active','2025-03-17 11:24:55','2025-03-17 11:24:55'),(7,'Group','This is Group Masters module','Active','2025-03-17 11:25:16','2025-03-17 11:25:16'),(8,'Module','This is Module Masters module','Active','2025-03-17 11:25:34','2025-03-17 11:25:34'),(9,'Tax','This is Tax Masters module','Active','2025-03-17 11:25:49','2025-03-17 11:25:49'),(10,'User','This is User Masters module','Active','2025-03-17 11:26:03','2025-03-17 11:26:03'),(11,'Invoice Template','This is Invoice Template Masters module','Active','2025-03-17 11:26:17','2025-03-17 11:26:17'),(12,'Generate Invoice','This is Invoice Master module','Active','2025-03-17 11:26:30','2025-03-17 11:26:30'),(13,'Invoice Management','This is Invoice Management Module','Active','2025-03-17 11:26:30','2025-03-17 11:26:30'),(14,'View Invoice','This is View Invoice module','Active','2025-03-17 11:26:30','2025-03-17 11:26:30');
/*!40000 ALTER TABLE `modules` 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-05-12 13:20:17
