/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: a11andoh
  • Date: 2013-05-28 12:47:41 UTC
  • mfrom: (115 lenasys_b)
  • mto: This revision was merged to the branch mainline in revision 121.
  • Revision ID: a11andoh@student.his.se-20130528124741-heyr8kp3ri5eg5hw
blurp

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
  `courseID` VARCHAR(10) NOT NULL ,
11
11
  `name` VARCHAR(50) NULL ,
12
12
  `courseData` VARCHAR(128) NULL , -- explanation about course, example: G1N 7,5hp  + additional text
13
 
  `isHidden` BIT(1) NOT NULL DEFAULT 0 ,
14
 
  `isPublic` BIT(1) NOT NULL DEFAULT 1 ,
 
13
  `isHidden` BIT(1) NOT NULL DEFAULT 0 , -- Published or not
 
14
  `isPublic` BIT(1) NOT NULL DEFAULT 1 , -- Public or not
15
15
  PRIMARY KEY (`courseID`))
16
16
ENGINE = InnoDB;
17
17