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/odc_doc.sql
Normal file
18
not_used/extracted_backup/odc_doc.sql
Normal file
@@ -0,0 +1,18 @@
|
||||
#
|
||||
# TABLE STRUCTURE FOR: odc_doc
|
||||
#
|
||||
|
||||
DROP TABLE IF EXISTS `odc_doc`;
|
||||
|
||||
CREATE TABLE `odc_doc` (
|
||||
`id` int(9) NOT NULL AUTO_INCREMENT,
|
||||
`odc_id` int(11) NOT NULL,
|
||||
`remark` text NOT NULL,
|
||||
`document` text NOT NULL,
|
||||
`created` int(11) NOT NULL,
|
||||
`createby` int(11) NOT NULL,
|
||||
`updated` int(11) NOT NULL,
|
||||
`updateby` int(11) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
|
||||
|
||||
Reference in New Issue
Block a user