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

Add `editor` to %thread_entry

parent 69ccfbee
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,11 @@ UPDATE `%TABLE_PREFIX%thread_event` A1
ALTER TABLE `%TABLE_PREFIX%user_email`
ADD `flags` int(10) unsigned NOT NULL DEFAULT 0 AFTER `user_id`;
ALTER TABLE `%TABLE_PREFIX%thread_entry`
ADD `editor` int(10) unsigned NULL AFTER `poster`,
ADD `editor_type` char(1) NULL AFTER `editor`;
-- Finished with patch
UPDATE `%TABLE_PREFIX%config`
SET `value` = '00000000000000000000000000000000'
WHERE `key` = 'schema_signature' AND `namespace` = 'core';
......@@ -632,6 +632,8 @@ CREATE TABLE `%TABLE_PREFIX%thread_entry` (
`type` char(1) NOT NULL default '',
`flags` int(11) unsigned NOT NULL default '0',
`poster` varchar(128) NOT NULL default '',
`editor` int(10) unsigned NULL,
`editor_type` char(1) NULL,
`source` varchar(32) NOT NULL default '',
`title` varchar(255),
`body` text NOT NULL,
......
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