Skip to content

Commit

Permalink
Additional comments
Browse files Browse the repository at this point in the history
  • Loading branch information
johncurrier committed Sep 19, 2008
1 parent e7c531f commit 6f7b93b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library.ddl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ create table PUBLISHER (
primary key(publisherId),
foreign key(address) references ADDRESS(addressId),
index(name)
) type=InnoDB COMMENT='<a href="foo.html">foo</a>';
) type=InnoDB COMMENT='<a href="http://en.wikipedia.org/wiki/Publisher">Publisher</a>';

create table BOOK (
isbn bigint,
Expand All @@ -30,7 +30,7 @@ create table BOOK (
primary key (isbn),
foreign key (publisherId) references PUBLISHER(publisherId),
index (title)
) type=InnoDB;
) type=InnoDB COMMENT='Book details';

create table author (
authorId integer auto_increment,
Expand Down

0 comments on commit 6f7b93b

Please sign in to comment.