feat: Initialize project with core dependencies, Vultr API client, customer database service, and migration documentation.

This commit is contained in:
2026-02-06 18:11:28 +08:00
parent 73366f4395
commit 41c2fa5fcc
2618 changed files with 852274 additions and 1449 deletions

View File

@@ -0,0 +1,18 @@
#
# TABLE STRUCTURE FOR: bank
#
DROP TABLE IF EXISTS `bank`;
CREATE TABLE `bank` (
`bank_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
`no_rek` varchar(128) NOT NULL,
`owner` varchar(128) NOT NULL,
`create_by` int(11) NOT NULL,
PRIMARY KEY (`bank_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
INSERT INTO `bank` (`bank_id`, `name`, `no_rek`, `owner`, `create_by`) VALUES (1, 'BANK MANDIRI', '1450014175281', 'PT. GLOBAL LINTAS SOLUSI', 0);