Revision [567]

This is an old revision of WikkaTableStructure made by DotMG on 2008-01-31 00:02:25.

 

HomePage

The structure of the MySQL-Tables of Wikka


The Wikka installer creates some tables necessary for storing Wikka data.

Note that they have the prefix you chose in the install process.

Example: $this->config["table_prefix"]."pages"
your chosen prefix: MyWikka_ (stored in wikka.config.php)
=> name of the table: MyWikka_pages

All of the tables have the type MyISAM.

The tables presented below use the default wikka_ prefix:

wikka_pages
stores different versions of Wikka pages
Column nameTypeLengthNullDefaultDescription
idunsigned int10noauto_incrementthe unique id for a page version
tagvarchar75no' 'the name of the page
timedatetimeno'0000-00-00 00:00:00'date and time of this version
bodymediumtextnothe content of the page
ownervarchar75no' 'the user which owns this version of the page
uservarchar75no' 'author of this version of the page
latestenum('Y','N')no'N'indicates if this version of the page is the latest (Y or N)
notevarchar100no' 'the note the editor can leave on a edit
handlervarchar30no'page'actually there are no other handlers than page

wikka_acls
stores the rights for reading/writing/commenting each page if those rights are different from the defaults defined in the configuration
Column nameTypeLengthNullDefaultDescription
page_tagvarchar75no' 'name of the page
read_acltextnothe access-list for reading a page
write_acltextnothe same for writing
comment_acltextno and for setting comments

stores links between Wikka pages
Column nameTypeLengthNullDefaultDescription
from_tagvarchar75no' 'start-page of the link
to_tagvarchar75no' 'target-page for the link

wikka_referrer
stores URLs of sites referring to Wikka-pages from external domains
Column nameTypeLengthNullDefaultDescription
page_tagvarchar75no' 'tag of the referred Wikka page
referrervarchar150no' 'URL of the referrer
timedatetimeno'0000-00-00 00:00:00'date and time of the last hit

wikka_referrer_blacklist
stores domains masked from the referrer pages
Column nameTypeLengthNullDefaultDescription
spammervarchar150no' 'blacklisted domain

wikka_user
stores registered users settings
Column nameTypeLengthNullDefaultDescription
namevarchar75no' 'the name of the user
passwordvarchar32no' 'the md5 encrypt of the password
emailvarchar50no' 'the email-address of the user
revisioncountunsigned int10no20how many revisions of a page are shown (see PageHistoryInfo)
changescountunsigned int10no50 how many entries are shown at Recentchanges
doubleclickeditenum('Y','N')no'Y'double-click edit or not
signuptimedatetimeno'0000-00-00 00:00:00'date and time of the registration
show_commentsenum('Y','N')no'Y'show comments as default or not

wikka_comments
stores comments to Wikka pages
Column nameTypeLengthNullDefaultDescription
idunsigned int10noauto_incrementthe unique id for a comment
page_tagvarchar75no' 'name of the page to which the comment belongs
timedatetimeno'0000-00-00 00:00:00'date and time of the comment
commenttextnothe text of the comment
uservarchar75no' 'the author of the comment


CategoryEN
There are no comments on this page.
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki