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

index c308b63..8481c64 100644 (file)
@@ -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 (