~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to examples/db/sample.sql

Give offerings home page URLs and descriptions, and remove global subject URLs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
252
252
 
253
253
ALTER TABLE offering DISABLE TRIGGER ALL;
254
254
 
255
 
INSERT INTO offering (offeringid, subject, semesterid, groups_student_permissions, description, url) VALUES (1, 1, 1, 'none', NULL, 'http://www.ivle.org/example/101');
256
 
INSERT INTO offering (offeringid, subject, semesterid, groups_student_permissions, description, url) VALUES (2, 2, 2, 'none', NULL, 'http://www.ivle.org/example/102');
257
 
INSERT INTO offering (offeringid, subject, semesterid, groups_student_permissions, description, url) VALUES (3, 1, 3, 'none', NULL, 'http://www.ivle.org/example/101');
258
 
INSERT INTO offering (offeringid, subject, semesterid, groups_student_permissions, description, url) VALUES (4, 3, 3, 'none', NULL, 'http://www.ivle.org/example/201');
259
 
INSERT INTO offering (offeringid, subject, semesterid, groups_student_permissions, description, url) VALUES (5, 2, 4, 'none', NULL, 'http://www.ivle.org/example/102');
260
 
INSERT INTO offering (offeringid, subject, semesterid, groups_student_permissions, description, url) VALUES (6, 4, 4, 'none', NULL, 'http://www.ivle.org/example/202');
 
255
INSERT INTO offering (offeringid, subject, semesterid, description, url, groups_student_permissions) VALUES (1, 1, 1, 'This subject will introduce you to the basics of IVLE.', 'http://www.ivle.org/example/101', 'none');
 
256
INSERT INTO offering (offeringid, subject, semesterid, description, url, groups_student_permissions) VALUES (2, 2, 2, 'Enhancing your understanding of IVLE''s usage and operation, this subject will consolidate and expand your general IVLE knowledge.', 'http://www.ivle.org/example/102', 'none');
 
257
INSERT INTO offering (offeringid, subject, semesterid, description, url, groups_student_permissions) VALUES (3, 1, 3, 'This subject will introduce you to the basics of IVLE, again.', 'http://www.ivle.org/example/101', 'none');
 
258
INSERT INTO offering (offeringid, subject, semesterid, description, url, groups_student_permissions) VALUES (4, 3, 3, 'This subject will provide you with a working knowledge of advanced IVLE concepts.', 'http://www.ivle.org/example/201', 'none');
 
259
INSERT INTO offering (offeringid, subject, semesterid, description, url, groups_student_permissions) VALUES (5, 2, 4, 'Enhancing your understanding of IVLE''s usage and operation, this subject will consolidate and expand your general IVLE knowledge, again.', 'http://www.ivle.org/example/102', 'none');
 
260
INSERT INTO offering (offeringid, subject, semesterid, description, url, groups_student_permissions) VALUES (6, 4, 4, 'After undertaking this subject, you should be a master of all things IVLEy.', 'http://www.ivle.org/example/202', 'none');
261
261
 
262
262
 
263
263
ALTER TABLE offering ENABLE TRIGGER ALL;