~ubuntu-branches/ubuntu/dapper/moodle/dapper-backports

« back to all changes in this revision

Viewing changes to mod/chat/db/oci8po.sql

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2006-12-01 14:00:21 UTC
  • mfrom: (6.1.5 feisty)
  • Revision ID: james.westby@ubuntu.com-20061201140021-rivugg5tgx6mujzg
Tags: 1.6.3-1ubuntu1~dapper1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
 
126
126
delete from prefix_log_display where module='chat';
127
127
 
128
 
INSERT INTO prefix_log_display VALUES ('chat', 'view', 'chat', 'name');
129
 
INSERT INTO prefix_log_display VALUES ('chat', 'add', 'chat', 'name');
130
 
INSERT INTO prefix_log_display VALUES ('chat', 'update', 'chat', 'name');
131
 
INSERT INTO prefix_log_display VALUES ('chat', 'report', 'chat', 'name');
 
128
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('chat', 'view', 'chat', 'name');
 
129
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('chat', 'add', 'chat', 'name');
 
130
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('chat', 'update', 'chat', 'name');
 
131
INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('chat', 'report', 'chat', 'name');
132
132
 
133
133
select * from prefix_log_display where module='chat' order by 1,2,3,4;