mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00

THIS IS A BIG CHANGE! I've renamed the "reading" module to "resource". This meant changing quite a few references throughout Moodle. The automatic upgrade process should work OK (it worked OK on my development server) and there shouldn't be any problems. BUT PLEASE PROCEED WITH CAUTION AND KEEP BACKUPS OF EVERYTHING UNTIL I HAVE A FEW MORE TESTS! If you upgrade please let me know. One thing that will break are any hard-coded links within forum messages. What I will be doing to fix this on my apache server is to add this to httpd.conf: Redirect /mod/reading/ http://moodle.com/mod/resource/ Sorry about any inconvenience, but it's better this is done sooner than later.
35 lines
923 B
SQL
Executable file
35 lines
923 B
SQL
Executable file
# phpMyAdmin MySQL-Dump
|
|
# version 2.2.1
|
|
# http://phpwizard.net/phpMyAdmin/
|
|
# http://phpmyadmin.sourceforge.net/ (download page)
|
|
#
|
|
# Host: localhost
|
|
# Generation Time: Nov 14, 2001 at 04:43 PM
|
|
# Server version: 3.23.36
|
|
# PHP Version: 4.0.6
|
|
# Database : `moodle`
|
|
# --------------------------------------------------------
|
|
|
|
#
|
|
# Table structure for table `resource`
|
|
#
|
|
|
|
CREATE TABLE resource (
|
|
id int(10) unsigned NOT NULL auto_increment,
|
|
course tinyint(10) unsigned NOT NULL default '0',
|
|
name varchar(255) NOT NULL default '',
|
|
type tinyint(4) NOT NULL default '0',
|
|
reference varchar(255) default NULL,
|
|
summary text NOT NULL,
|
|
alltext text NOT NULL,
|
|
timemodified int(10) unsigned NOT NULL default '0',
|
|
PRIMARY KEY (id),
|
|
UNIQUE KEY id (id)
|
|
) TYPE=MyISAM;
|
|
|
|
|
|
#
|
|
# Dumping data for table `log_display`
|
|
#
|
|
|
|
INSERT INTO log_display VALUES ('resource', 'view', 'resource', 'name');
|