mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
Deleting some old oci8po files from CVS.
This commit is contained in:
parent
8914508a4b
commit
b4c7bb78fc
19 changed files with 0 additions and 1799 deletions
|
@ -1,28 +0,0 @@
|
|||
<?php // $Id$
|
||||
|
||||
|
||||
|
||||
function glossary_upgrade($oldversion) {
|
||||
|
||||
/// This function does anything necessary to upgrade
|
||||
|
||||
/// older versions to match current functionality
|
||||
|
||||
|
||||
|
||||
global $CFG;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
||||
|
||||
|
|
@ -1,174 +0,0 @@
|
|||
rem This file contains a complete database schema for all the
|
||||
rem tables used by this module, written in SQL
|
||||
|
||||
rem It may also contain INSERT statements for particular data
|
||||
rem that may be used, especially new entries in the table log_display
|
||||
|
||||
rem
|
||||
rem Table structure for table glossary
|
||||
rem
|
||||
|
||||
drop TABLE prefix_glossary;
|
||||
CREATE TABLE prefix_glossary (
|
||||
id number(10) primary key,
|
||||
course number(10) default '0' not null,
|
||||
name varchar2(255) default '' not null,
|
||||
intro varchar2(255) default '' not null,
|
||||
studentcanpost number(2) default '0' not null,
|
||||
allowduplicatedentries number(2) default '0' not null,
|
||||
displayformat number(2) default '0' not null,
|
||||
mainglossary number(2) default '0' not null,
|
||||
showspecial number(2) default '1' not null,
|
||||
showall number(2) default '1' not null,
|
||||
showalphabet number(2) default '1' not null,
|
||||
editalways number(2) default '0' NOT NULL,
|
||||
rsstype number(2) default '0' NOT NULL,
|
||||
rssarticles number(2) default '0' NOT NULL,
|
||||
timecreated number(10) default '0' not null,
|
||||
timemodified number(10) default '0' not null
|
||||
);
|
||||
|
||||
COMMENT on table prefix_glossary is 'all glossaries';
|
||||
|
||||
drop sequence p_glossary_seq;
|
||||
create sequence p_glossary_seq;
|
||||
|
||||
create or replace trigger p_glossary_trig
|
||||
before insert on prefix_glossary
|
||||
referencing new as new_row
|
||||
for each row
|
||||
begin
|
||||
select p_glossary_seq.nextval into :new_row.id from dual;
|
||||
end;
|
||||
.
|
||||
/
|
||||
|
||||
insert into prefix_glossary(course,name,intro,studentcanpost,allowduplicatedentries,displayformat,mainglossary,showspecial,showall,showalphabet,timecreated,timemodified) values(1,'1','1',1,1,1,1,1,1,1,1,1);
|
||||
insert into prefix_glossary(course,name,intro,studentcanpost,allowduplicatedentries,displayformat,mainglossary,showspecial,showall,showalphabet,timecreated,timemodified) values(2,'2','2',2,2,2,2,2,2,2,2,2);
|
||||
insert into prefix_glossary(course,name,intro,studentcanpost,allowduplicatedentries,displayformat,mainglossary,showspecial,showall,showalphabet,timecreated,timemodified) values(3,'3','3',3,3,3,3,3,3,3,3,3);
|
||||
insert into prefix_glossary(course,name,intro,studentcanpost,allowduplicatedentries,displayformat,mainglossary,showspecial,showall,showalphabet,timecreated,timemodified) values(4,'4','4',4,4,4,4,4,4,4,4,4);
|
||||
|
||||
select * from prefix_glossary order by 1,2;
|
||||
|
||||
rem
|
||||
rem Table structure for table glossary_entries
|
||||
rem
|
||||
|
||||
drop TABLE prefix_glossary_entries;
|
||||
CREATE TABLE prefix_glossary_entries (
|
||||
id number(10) primary key,
|
||||
glossaryid number(10) default '0' not null,
|
||||
userid number(10) default '0' not null,
|
||||
concept varchar2(255) default '' not null,
|
||||
definition varchar2(1024) NOT NULL,
|
||||
format number(2) default '0' not null,
|
||||
attachment varchar2(100) default '' not null,
|
||||
timecreated number(10) default '0' not null,
|
||||
timemodified number(10) default '0' not null,
|
||||
teacherentry number(2) default '0' not null,
|
||||
sourceglossaryid number(10) default '0' not null
|
||||
);
|
||||
|
||||
COMMENT on table prefix_glossary_entries is 'all glossary entries';
|
||||
|
||||
drop sequence p_glossary_entries_seq;
|
||||
create sequence p_glossary_entries_seq;
|
||||
|
||||
create or replace trigger p_glossary_entries_trig
|
||||
before insert on prefix_glossary_entries
|
||||
referencing new as new_row
|
||||
for each row
|
||||
begin
|
||||
select p_glossary_entries_seq.nextval into :new_row.id from dual;
|
||||
end;
|
||||
.
|
||||
/
|
||||
|
||||
insert into prefix_glossary_entries(glossaryid,userid,concept,definition,format,attachment,timecreated,timemodified,teacherentry,sourceglossaryid) values(1,1,'1','1',1,'1',1,1,1,1);
|
||||
insert into prefix_glossary_entries(glossaryid,userid,concept,definition,format,attachment,timecreated,timemodified,teacherentry,sourceglossaryid) values(2,2,'2','2',2,'2',2,2,2,2);
|
||||
insert into prefix_glossary_entries(glossaryid,userid,concept,definition,format,attachment,timecreated,timemodified,teacherentry,sourceglossaryid) values(3,3,'3','3',3,'3',3,3,3,3);
|
||||
insert into prefix_glossary_entries(glossaryid,userid,concept,definition,format,attachment,timecreated,timemodified,teacherentry,sourceglossaryid) values(4,4,'4','4',4,'4',4,4,4,4);
|
||||
|
||||
col format format 99
|
||||
select * from prefix_glossary_entries order by 1,2;
|
||||
|
||||
rem
|
||||
rem Table structure for table glossary_cageories
|
||||
rem
|
||||
|
||||
drop TABLE prefix_glossary_categories;
|
||||
CREATE TABLE prefix_glossary_categories (
|
||||
id number(10) primary key,
|
||||
glossaryid number(10) default '0' not null,
|
||||
name varchar(255) default '' not null
|
||||
);
|
||||
|
||||
COMMENT on table prefix_glossary_categories is 'all categories for glossary entries';
|
||||
|
||||
drop sequence p_glossary_categories_seq;
|
||||
create sequence p_glossary_categories_seq;
|
||||
|
||||
create or replace trigger p_glossary_categories_trig
|
||||
before insert on prefix_glossary_categories
|
||||
referencing new as new_row
|
||||
for each row
|
||||
begin
|
||||
select p_glossary_categories_seq.nextval into :new_row.id from dual;
|
||||
end;
|
||||
.
|
||||
/
|
||||
|
||||
insert into prefix_glossary_categories(glossaryid,name) values(1,'1');
|
||||
insert into prefix_glossary_categories(glossaryid,name) values(2,'2');
|
||||
insert into prefix_glossary_categories(glossaryid,name) values(3,'3');
|
||||
insert into prefix_glossary_categories(glossaryid,name) values(4,'4');
|
||||
|
||||
rem
|
||||
rem Table structure for table glossary_entries_category
|
||||
rem
|
||||
|
||||
drop TABLE prefix_glossary_entries_catego;
|
||||
CREATE TABLE prefix_glossary_entries_catego (
|
||||
id number(10) primary key,
|
||||
categoryid number(10) default '0' not null,
|
||||
entryid number(10) default '0' not null
|
||||
);
|
||||
|
||||
COMMENT on table prefix_glossary_entries_catego is 'categories of each glossary entry';
|
||||
|
||||
drop sequence pg_entries_catego_seq;
|
||||
create sequence pg_entries_catego_seq;
|
||||
|
||||
create or replace trigger pg_entries_catego_trig
|
||||
before insert on prefix_glossary_entries_catego
|
||||
referencing new as new_row
|
||||
for each row
|
||||
begin
|
||||
select pg_entries_catego_seq.nextval into :new_row.id from dual;
|
||||
end;
|
||||
.
|
||||
/
|
||||
|
||||
insert into prefix_glossary_entries_catego(categoryid,entryid) values(1,1);
|
||||
insert into prefix_glossary_entries_catego(categoryid,entryid) values(2,2);
|
||||
insert into prefix_glossary_entries_catego(categoryid,entryid) values(3,3);
|
||||
insert into prefix_glossary_entries_catego(categoryid,entryid) values(4,4);
|
||||
|
||||
rem
|
||||
rem Dumping data for table log_display
|
||||
rem
|
||||
|
||||
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('glossary', 'add', 'glossary', 'name');
|
||||
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('glossary', 'update', 'glossary', 'name');
|
||||
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('glossary', 'delete', 'glossary', 'name');
|
||||
|
||||
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('glossary', 'view', 'glossary', 'name');
|
||||
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('glossary', 'view all', 'glossary', 'name');
|
||||
|
||||
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('glossary', 'add entry', 'glossary', 'name');
|
||||
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('glossary', 'update entry', 'glossary', 'name');
|
||||
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('glossary', 'delete entry', 'glossary', 'name');
|
||||
|
||||
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('glossary', 'add category', 'glossary', 'name');
|
||||
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('glossary', 'update category', 'glossary', 'name');
|
||||
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('glossary', 'delete category', 'glossary', 'name');
|
Loading…
Add table
Add a link
Reference in a new issue