]> Dogcows Code - chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate/blobdiff - t/lib/DBSchema/Result/Dvdtag.pm
Initial
[chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate] / t / lib / DBSchema / Result / Dvdtag.pm
diff --git a/t/lib/DBSchema/Result/Dvdtag.pm b/t/lib/DBSchema/Result/Dvdtag.pm
new file mode 100644 (file)
index 0000000..77521bc
--- /dev/null
@@ -0,0 +1,21 @@
+package DBSchema::Result::Dvdtag;
+
+# Created by DBIx::Class::Schema::Loader v0.03000 @ 2006-10-02 08:24:09
+
+use strict;
+use warnings;
+
+use base 'DBIx::Class';
+
+__PACKAGE__->load_components("PK::Auto", "Core");
+__PACKAGE__->table("dvdtag");
+__PACKAGE__->add_columns(
+    "dvd" => { data_type => 'integer' },
+    "tag" => { data_type => 'integer' },
+);
+__PACKAGE__->set_primary_key("dvd", "tag");
+__PACKAGE__->belongs_to("dvd", "Dvd", { id => "dvd" });
+__PACKAGE__->belongs_to("tag", "Tag", { id => "tag" });
+
+1;
+
This page took 0.020898 seconds and 4 git commands to generate.