mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-22 23:05:18 -04:00
Remove 'ENGINE=InnoDB' specification from tables that we create. Use
the system's default table specification. Fixes ticket #597.
This commit is contained in:
@@ -27,14 +27,14 @@ class notification_installer {
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY (`item_id`, `user_id`),
|
||||
UNIQUE KEY (`user_id`, `item_id`))
|
||||
ENGINE=InnoDB DEFAULT CHARSET=utf8;");
|
||||
DEFAULT CHARSET=utf8;");
|
||||
$db->query("CREATE TABLE IF NOT EXISTS {pending_notifications} (
|
||||
`id` int(9) NOT NULL auto_increment,
|
||||
`email` varchar(128) NOT NULL,
|
||||
`subject` varchar(255) NOT NULL,
|
||||
`text` text,
|
||||
PRIMARY KEY (`id`))
|
||||
ENGINE=InnoDB DEFAULT CHARSET=utf8;");
|
||||
DEFAULT CHARSET=utf8;");
|
||||
|
||||
module::set_version("notification", 1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user