Code: Select all
ALTER TABLE phpbb_blogs_users CHANGE blog_style blog_style VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'coda'
If you wish to reset all users to use a certain style, run this query (change coda to the style you want):
Code: Select all
UPDATE phpbb_blogs_users SET blog_style = 'coda'
After running the queries you must purge the forum's cache.