MyBB Community Forums

Full Version: How to create backups
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Little guide I made on creating backups and what each part of the backup interface does, enjoy.

Structure makes sure it maintains the same column type and definition. Data is individual records.

The equivalent for structure only would be like this
SHOW CREATE TABLE mybb_posts

Data only would be like this:
INSERT INTO mybb_posts ($pid,$tid,$replyto, etc.)
(2014-06-29, 11:02 PM)dragonexpert Wrote: [ -> ]Structure makes sure it maintains the same column type and definition. Data is individual records.

The equivalent for structure only would be like this
SHOW CREATE TABLE mybb_posts

Data only would be like this:
INSERT INTO mybb_posts ($pid,$tid,$replyto, etc.)

Yea, that's what I explained in the video. Data is stuff like posts and what not and the structures are stuff like forums, cats and all that.
bumping this thread!