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