add comment about why we have not null set on create_id
Oliver Gorwits [Mon, 26 Apr 2010 20:57:43 +0000 (20:57 +0000)]
lib/DBIx/Class/Schema/Journal/DB/AuditLog.pm

index 472d94b..70fe818 100644 (file)
@@ -7,6 +7,10 @@ sub journal_define_table {
 
     $class->table($source->name . '_audit_log');
 
+    # the create_id is the id of first insertion of the row
+    # so we always know where to roll back to
+    # and presumably should be supplied on every insert
+
     $class->add_columns(
         create_id => {
             data_type => 'integer',