feat: Initialize project with core dependencies, Vultr API client, customer database service, and migration documentation.
This commit is contained in:
19
not_used/extracted_backup/help_timeline.sql
Normal file
19
not_used/extracted_backup/help_timeline.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
#
|
||||
# TABLE STRUCTURE FOR: help_timeline
|
||||
#
|
||||
|
||||
DROP TABLE IF EXISTS `help_timeline`;
|
||||
|
||||
CREATE TABLE `help_timeline` (
|
||||
`ht_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`help_id` int(11) NOT NULL,
|
||||
`date_update` int(11) NOT NULL,
|
||||
`remark` text NOT NULL,
|
||||
`teknisi` int(11) NOT NULL,
|
||||
`status` varchar(50) NOT NULL,
|
||||
`date_created` varchar(40) NOT NULL,
|
||||
`action` text NOT NULL,
|
||||
`help_picture` text NOT NULL,
|
||||
PRIMARY KEY (`ht_id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
||||
Reference in New Issue
Block a user