Skip to content
Snippets Groups Projects
Commit 00875ea0 authored by Jared Hancock's avatar Jared Hancock
Browse files

Fix oops in upgrade of %help_topic table

formset_id was not renamed to form_id after our rebase
parent 0d229710
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,7 @@ ALTER TABLE `%TABLE_PREFIX%filter_rule`
CHANGE `what` `what` varchar(32) NOT NULL;
ALTER TABLE `%TABLE_PREFIX%help_topic`
ADD `formset_id` int(11) unsigned NOT NULL default '0' AFTER `sla_id`;
ADD `form_id` int(11) unsigned NOT NULL default '0' AFTER `sla_id`;
ALTER TABLE `%TABLE_PREFIX%ticket`
ADD `user_id` int(11) UNSIGNED NOT NULL DEFAULT 0 AFTER `ticket_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