Skip to content
Snippets Groups Projects
Commit 39972c02 authored by Rajmund Hruška's avatar Rajmund Hruška
Browse files

Server: Allow column idea_id to be NULL

parent 759e4a6c
No related branches found
No related tags found
No related merge requests found
...@@ -70,7 +70,7 @@ CREATE TABLE IF NOT EXISTS `events` ( ...@@ -70,7 +70,7 @@ CREATE TABLE IF NOT EXISTS `events` (
`client_id` int UNSIGNED NOT NULL, `client_id` int UNSIGNED NOT NULL,
`data` longtext NOT NULL, `data` longtext NOT NULL,
`valid` tinyint UNSIGNED NOT NULL DEFAULT '1', `valid` tinyint UNSIGNED NOT NULL DEFAULT '1',
`idea_id` varchar(255) NOT NULL UNIQUE, `idea_id` varchar(255) UNIQUE,
PRIMARY KEY (`id`), PRIMARY KEY (`id`),
KEY `id` (`id`,`client_id`), KEY `id` (`id`,`client_id`),
KEY `received` (`received`) KEY `received` (`received`)
......
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