feat: Initialize project with core dependencies, Vultr API client, customer database service, and migration documentation.
This commit is contained in:
15
not_used/extracted_backup/customer_chart.sql
Normal file
15
not_used/extracted_backup/customer_chart.sql
Normal file
@@ -0,0 +1,15 @@
|
||||
#
|
||||
# TABLE STRUCTURE FOR: customer_chart
|
||||
#
|
||||
|
||||
DROP TABLE IF EXISTS `customer_chart`;
|
||||
|
||||
CREATE TABLE `customer_chart` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`id_chart` varchar(50) NOT NULL,
|
||||
`fromcs` varchar(50) NOT NULL,
|
||||
`tocs` varchar(128) NOT NULL,
|
||||
`type` varchar(50) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
||||
Reference in New Issue
Block a user