⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.45
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
qda-digital.online
/
storage
/
backup
/
View File Name :
acculance_v2_1674554450.sql
-- MySQL dump 10.13 Distrib 8.0.29, for Win64 (x86_64) -- -- Host: 127.0.0.1 Database: acculance_v2 -- ------------------------------------------------------ -- Server version 5.7.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 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 `account_transactions` -- DROP TABLE IF EXISTS `account_transactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `account_transactions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `reason` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(12,2) NOT NULL, `type` tinyint(1) NOT NULL COMMENT '0 is Debit and 1 is Credit', `cheque_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receipt_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_date` datetime NOT NULL, `note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `account_id` bigint(20) unsigned NOT NULL, `created_by` bigint(20) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `account_transactions_account_id_foreign` (`account_id`), KEY `account_transactions_created_by_foreign` (`created_by`), CONSTRAINT `account_transactions_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `account_transactions_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `account_transactions` -- LOCK TABLES `account_transactions` WRITE; /*!40000 ALTER TABLE `account_transactions` DISABLE KEYS */; INSERT INTO `account_transactions` VALUES (1,'Non invoice balance added to [CASH-0001]','non-invoice-balance-added-to-cash-0001',100000.00,1,NULL,NULL,'2022-12-11 00:00:00',NULL,1,'2022-12-11 04:11:47','2022-12-11 04:11:47',1,1),(2,'[APP-1] Purchase Payment sent from [CASH-0001]','app-1-purchase-payment-sent-from-cash-0001',2000.00,0,NULL,NULL,'2022-12-11 00:00:00',NULL,1,'2022-12-11 04:12:55','2022-12-11 04:12:55',1,1),(3,'[APP-2] Purchase Payment sent from [CASH-0001]','app-2-purchase-payment-sent-from-cash-0001',3000.00,0,NULL,NULL,'2022-12-11 00:00:00',NULL,1,'2022-12-11 04:14:23','2022-12-11 04:14:23',1,1); /*!40000 ALTER TABLE `account_transactions` ENABLE KEYS */; UNLOCK TABLES;