feat: Initialize project with core dependencies, Vultr API client, customer database service, and migration documentation.
This commit is contained in:
16
not_used/extracted_backup/maps.sql
Normal file
16
not_used/extracted_backup/maps.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
#
|
||||
# TABLE STRUCTURE FOR: maps
|
||||
#
|
||||
|
||||
DROP TABLE IF EXISTS `maps`;
|
||||
|
||||
CREATE TABLE `maps` (
|
||||
`id` int(9) NOT NULL AUTO_INCREMENT,
|
||||
`vendor` text NOT NULL,
|
||||
`token` text NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
|
||||
|
||||
INSERT INTO `maps` (`id`, `vendor`, `token`) VALUES (1, '', 'your token / api key');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user