Skip to content
Snippets Groups Projects

Dock

Merged Bernardus Willson requested to merge dock into main
Compare and
7 files
+ 90
14
Preferences
Compare changes
Files
7
+ 1
8
@@ -172,7 +172,7 @@ CREATE TABLE `userGems` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
CREATE TABLE `transaction`(
`t_id` int(11) NOT NULL AUTO_INCREMENT,
`tid` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL,
`amount` int NOT NULL,
`image` VARCHAR(255) NOT NULL,
@@ -180,13 +180,6 @@ CREATE TABLE `transaction`(
PRIMARY KEY (`tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
CREATE TABLE `apikey` (
`a_id` int(11) NOT NULL AUTO_INCREMENT,
`desc` varchar(255) NOT NULL,
`key` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;