These comments are woefully outdated
[dbsrgits/DBIx-Class.git] / examples / Schema / insertdb.pl
index 15bf71b..57cf5a1 100755 (executable)
@@ -7,10 +7,6 @@ use MyApp::Schema;
 
 my $schema = MyApp::Schema->connect('dbi:SQLite:db/example.db');
 
-#  here's some of the sql that is going to be generated by the schema
-#  INSERT INTO artist VALUES (NULL,'Michael Jackson');
-#  INSERT INTO artist VALUES (NULL,'Eminem');
-
 my @artists = (['Michael Jackson'], ['Eminem']);
 $schema->populate('Artist', [
     [qw/name/],