Skip to content
Snippets Groups Projects
Commit 73c6e6e5 authored by Carsten  Rose's avatar Carsten Rose
Browse files

Remove broken 'AUTO_INCREMENT', add it as separate line

parent 1771406e
No related branches found
No related tags found
No related merge requests found
Pipeline #7355 passed
......@@ -85,7 +85,7 @@ Table: Person
::
CREATE TABLE `Person` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`id` int(11) UNSIGNED NOT NULL,
`lastName` varchar(64) NOT NULL DEFAULT '',
`firstName` varchar(64) NOT NULL DEFAULT '',
`email` varchar(128) NOT NULL,
......@@ -94,6 +94,7 @@ Table: Person
`authExpire` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 PACK_KEYS=1;
ALTER TABLE `Person` MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLE `Person` ADD PRIMARY KEY (`id`);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment