Remove "deleted" field from course_modules table

http://moodle.org/mod/forum/discuss.php?d=20715
This commit is contained in:
moodler
2005-03-31 08:46:38 +00:00
parent 90d0ae4f76
commit 594ceedda1
5 changed files with 14 additions and 6 deletions

View File

@@ -81,7 +81,6 @@ CREATE TABLE prefix_course_modules (
instance integer NOT NULL default '0',
section integer NOT NULL default '0',
added integer NOT NULL default '0',
deleted integer NOT NULL default '0',
score integer NOT NULL default '0',
indent integer NOT NULL default '0',
visible integer NOT NULL default '1',
@@ -92,7 +91,6 @@ CREATE INDEX prefix_course_modules_visible_idx ON prefix_course_modules (visible
CREATE INDEX prefix_course_modules_course_idx ON prefix_course_modules (course);
CREATE INDEX prefix_course_modules_module_idx ON prefix_course_modules (module);
CREATE INDEX prefix_course_modules_instance_idx ON prefix_course_modules (instance);
CREATE INDEX prefix_course_modules_deleted_idx ON prefix_course_modules (deleted);
CREATE TABLE prefix_course_sections (
id SERIAL PRIMARY KEY,