/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to databas.sql

  • Committer: Gustav Hatvigsson
  • Date: 2013-05-28 14:01:47 UTC
  • mfrom: (119.1.1 lenasys)
  • Revision ID: gustav.hartvigsson@gmail.com-20130528140147-2ewydr3yibwkoizh
Merged Wiksröm:s changes:

Edited courses data, making it more testable with different visble/public settings

Show diffs side-by-side

added added

removed removed

Lines of Context:
288
288
ENGINE = InnoDB;
289
289
-- -------------------------------------------------
290
290
 
291
 
INSERT INTO `Courses`(`courseID`, `name`, `courseData`) 
292
 
VALUES('DA146G'  , 'Computer Graphics' , ' 7,5hp (IKI)'),
293
 
('IS317G'  , 'Database Construction' , ' 7,5hp (IKI)'),
294
 
('IS114G'  , 'Database Systems' , ' 7,5hp (IKI)'),
295
 
('DV313G'  , 'Webdevelopment - XML API' , ' 7,5hp (IKI)'),
296
 
('DA330G'  , 'Webprogramming' , ' 7,5hp (IKI)'),
297
 
('DA525G'  ,  'Advanced Computer Graphics and Shader Programming'  ,  ' 7,5hp (IKI)');
 
291
INSERT INTO `Courses`(`courseID`, `name`, `courseData`, `isPublic`, `isHidden`) 
 
292
VALUES('DA146G'  , 'Computer Graphics' , ' 7,5hp (IKI)', 1, 0),
 
293
('IS317G'  , 'Database Construction' , ' 7,5hp (IKI)', 0, 1),
 
294
('IS114G'  , 'Database Systems' , ' 7,5hp (IKI)', 1, 0),
 
295
('DV313G'  , 'Webdevelopment - XML API' , ' 7,5hp (IKI)', 1, 0),
 
296
('DA330G'  , 'Webprogramming' , ' 7,5hp (IKI)', 0, 0),
 
297
('DA525G'  , 'Advanced Computer Graphics and Shader Programming'  ,  ' 7,5hp (IKI)', 0, 1);
298
298
 
299
299
INSERT INTO `lenasys`.`Users` (`userName`,`name`,`passwd`, passwdHint,`userType`,`ssn`,`activeCourse`) 
300
300
VALUES ('student','Per Student','06d31954049ffa053039ae83bab3dcd0ebc67195','gamla vanliga' ,2,'19900385-2345', 'DA330G'),