Skip to content

Commit

Permalink
PUSH
Browse files Browse the repository at this point in the history
  • Loading branch information
NaysKutzu committed Oct 18, 2023
1 parent 3d3847a commit 846280c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion migrate/11.sql
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
CREATE TABLE `mythicaldash`.`mythicaldash_linkvertise` (`id` INT NOT NULL AUTO_INCREMENT , `skey` TEXT NOT NULL , `date` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , PRIMARY KEY (`id`)) ENGINE = InnoDB;
CREATE TABLE `mythicaldash_linkvertise` (
`id` int(11) NOT NULL,
`skey` text NOT NULL,
`date` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

ALTER TABLE `mythicaldash_linkvertise`
ADD PRIMARY KEY (`id`);

ALTER TABLE `mythicaldash_linkvertise`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
COMMIT;

0 comments on commit 846280c

Please sign in to comment.