moodle/mod/wiki/db/mysql.sql
moodler f6691427d9 Added default values where needed for columns in the MySQL creation script mysql.sql.
Added default values to migrate2utf8.xml, for any varchar and text field types, if the default values for these fields were not defined as '' in the MySQL table creation script.

Committed by vyshane
2006-01-17 07:37:29 +00:00

68 lines
2.4 KiB
SQL

# This file contains a complete database schema for all the
# tables used by this module, written in SQL
# It may also contain INSERT statements for particular data
# that may be used, especially new entries in the table log_display
CREATE TABLE `prefix_wiki` (
`id` int(10) unsigned NOT NULL auto_increment,
`course` int(10) unsigned NOT NULL default '0',
`name` varchar(255) NOT NULL default '',
`summary` text NOT NULL default '',
`pagename` varchar(255) default NULL,
`wtype` enum('teacher','group','student') NOT NULL default 'group',
`ewikiprinttitle` tinyint(4) NOT NULL default '1',
`htmlmode` tinyint(4) NOT NULL default '0',
`ewikiacceptbinary` tinyint(4) NOT NULL default '0',
`disablecamelcase` tinyint(4) NOT NULL default '0',
`setpageflags` tinyint(4) NOT NULL default '1',
`strippages` tinyint(4) NOT NULL default '1',
`removepages` tinyint(4) NOT NULL default '1',
`revertchanges` tinyint(4) NOT NULL default '1',
`initialcontent` varchar(255) default NULL,
`timemodified` int(10) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `course` (`course`)
) TYPE=MyISAM COMMENT='Main wiki table';
#
# Table structure for table `mdl_wiki_entries`
#
CREATE TABLE `prefix_wiki_entries` (
`id` int(10) NOT NULL auto_increment,
`wikiid` int(10) NOT NULL default '0',
`course` int(10) NOT NULL default '0',
`groupid` int(10) NOT NULL default '0',
`userid` int(10) NOT NULL default '0',
`pagename` varchar(255) NOT NULL default '',
`timemodified` int(10) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `wikiid` (`wikiid`),
KEY `course` (`course`),
KEY `gropuid` (`groupid`),
KEY `userid` (`userid`),
KEY `pagename` (`pagename`)
) TYPE=MyISAM COMMENT='Holds entries for each wiki start instance.';
CREATE TABLE `prefix_wiki_pages` (
`id` int(10) unsigned NOT NULL auto_increment,
`pagename` VARCHAR(160) NOT NULL,
`version` INTEGER UNSIGNED NOT NULL DEFAULT 0,
`flags` INTEGER UNSIGNED DEFAULT 0,
`content` MEDIUMTEXT default '',
`author` VARCHAR(100) DEFAULT 'ewiki',
`userid` INTEGER UNSIGNED NOT NULL DEFAULT 0,
`created` INTEGER UNSIGNED DEFAULT 0,
`lastmodified` INTEGER UNSIGNED DEFAULT 0,
`refs` MEDIUMTEXT default '',
`meta` MEDIUMTEXT default '',
`hits` INTEGER UNSIGNED DEFAULT 0,
`wiki` int(10) unsigned NOT NULL default 0,
PRIMARY KEY `id` (`id`),
UNIQUE KEY `wiki_pages_uk` (`pagename`, `version`, `wiki`)
) TYPE=MyISAM COMMENT='Holds the Wiki-Pages';