feat: Initialize project with core dependencies, Vultr API client, customer database service, and migration documentation.
This commit is contained in:
14
not_used/extracted_backup/m_media_connection.sql
Normal file
14
not_used/extracted_backup/m_media_connection.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
#
|
||||
# TABLE STRUCTURE FOR: m_media_connection
|
||||
#
|
||||
|
||||
DROP TABLE IF EXISTS `m_media_connection`;
|
||||
|
||||
CREATE TABLE `m_media_connection` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`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