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,15 @@
#
# TABLE STRUCTURE FOR: script
#
DROP TABLE IF EXISTS `script`;
CREATE TABLE `script` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`vendor` text NOT NULL,
`onu_type` text NOT NULL,
`script` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;