Skip to content
Snippets Groups Projects
Commit 14af3ae7 authored by Raditss's avatar Raditss
Browse files

add table api key

parent 91f811a8
Branches
Tags
1 merge request!1soap service 85%
Pipeline #59430 failed with stages
in 0 seconds
...@@ -172,7 +172,7 @@ CREATE TABLE `userGems` ( ...@@ -172,7 +172,7 @@ CREATE TABLE `userGems` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
CREATE TABLE `transaction`( CREATE TABLE `transaction`(
`tid` int(11) NOT NULL AUTO_INCREMENT, `t_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL, `user_id` int NOT NULL,
`amount` int NOT NULL, `amount` int NOT NULL,
`image` VARCHAR(255) NOT NULL, `image` VARCHAR(255) NOT NULL,
...@@ -180,6 +180,13 @@ CREATE TABLE `transaction`( ...@@ -180,6 +180,13 @@ CREATE TABLE `transaction`(
PRIMARY KEY (`tid`) PRIMARY KEY (`tid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; ) 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;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment