Apparently -i and -jN do not work on win32, what the hell
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / MyStarLinkMCPK.pm
index dfc3ff2..1173163 100644 (file)
@@ -1,13 +1,14 @@
-package # hide from PAUSE 
+package # hide from PAUSE
     MyStarLinkMCPK;
 
+use warnings;
+use strict;
+
 use base 'MyBase';
 
 use MyStar;
 use MyFilm;
 
-use strict;
-
 # This is a many-to-many mapping table that uses the two foreign keys
 # as its own primary key - there's no extra 'auto-inc' column here
 
@@ -18,7 +19,7 @@ __PACKAGE__->has_a(film => 'MyFilm');
 __PACKAGE__->has_a(star => 'MyStar');
 
 sub create_sql {
-       return qq{
+  return qq{
     film    INTEGER NOT NULL,
     star    INTEGER NOT NULL,
     PRIMARY KEY (film, star)