projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
ec30888
)
small typo fix to ExampleSchema.pod
Brandon L. Black [Fri, 3 Mar 2006 23:52:11 +0000 (23:52 +0000)]
lib/DBIx/Class/Manual/ExampleSchema.pod
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Manual/ExampleSchema.pod
b/lib/DBIx/Class/Manual/ExampleSchema.pod
index
c308b63
..
8481c64
100644
(file)
--- a/
lib/DBIx/Class/Manual/ExampleSchema.pod
+++ b/
lib/DBIx/Class/Manual/ExampleSchema.pod
@@
-46,7
+46,7
@@
Save the following into a example.sql
CREATE TABLE cd (
cdid INTEGER PRIMARY KEY,
- artist INTEGER NOT NULL REFERENCES artist(id)
+ artist INTEGER NOT NULL REFERENCES artist(id),
title TEXT NOT NULL);
CREATE TABLE track (