c8e0b57900
NEW: The code now supports dynamically plugging your own Pages and block position identifiers into Moodle without messing with the main libraries at all. UPDATE: Many functions in blocklib now use pass-by-reference for speed. UPDATE: Class MoodlePage has been made more presentable and robust.
16 lines
456 B
SQL
16 lines
456 B
SQL
# $Id$
|
|
#
|
|
# Table structure for table `blocks`
|
|
#
|
|
|
|
CREATE TABLE `prefix_blocks` (
|
|
`id` int(10) unsigned NOT NULL auto_increment,
|
|
`name` varchar(40) NOT NULL default '',
|
|
`version` int(10) NOT NULL default '0',
|
|
`cron` int(10) unsigned NOT NULL default '0',
|
|
`lastcron` int(10) unsigned NOT NULL default '0',
|
|
`visible` tinyint(1) NOT NULL default '1',
|
|
PRIMARY KEY (`id`)
|
|
) TYPE=MyISAM;
|
|
# --------------------------------------------------------
|