feat: Initialize project with core dependencies, Vultr API client, customer database service, and migration documentation.
This commit is contained in:
18
not_used/extracted_backup/bank.sql
Normal file
18
not_used/extracted_backup/bank.sql
Normal 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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user