summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-03-18 01:53:17 +0000
committerfukachan <fukachan>2001-03-18 01:53:17 +0000
commit110d337a58d4952b1161bc2e70ba368ca83df8e0 (patch)
tree8c262377f94f42e067e12080e894567a1968c4e3
parent4598b40548818999ead99243b0b8ac21216ccd4b (diff)
downloadfml8-110d337a58d4952b1161bc2e70ba368ca83df8e0.tar.gz
fml8-110d337a58d4952b1161bc2e70ba368ca83df8e0.tar.bz2
fml8-110d337a58d4952b1161bc2e70ba368ca83df8e0.zip
create SQL::Schema:: class for model specific schemasnap-20010318
-rw-r--r--fml/lib/SQL/Schema/toymodel.pm29
1 files changed, 29 insertions, 0 deletions
diff --git a/fml/lib/SQL/Schema/toymodel.pm b/fml/lib/SQL/Schema/toymodel.pm
new file mode 100644
index 00000000..911bb1d5
--- /dev/null
+++ b/fml/lib/SQL/Schema/toymodel.pm
@@ -0,0 +1,29 @@
+#-*- perl -*-
+#
+# Copyright (C) 2000 Ken'ichi Fukamachi
+# All rights reserved.
+#
+# $Id$
+#
+
+
+package IO::Adapter::MySQL::toymodel;
+
+use strict;
+use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
+use Carp;
+
+=head1 NAME
+
+IO::Adapter::MySQL::toymodel - toymodel by SQL
+
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+=head1 METHODS
+
+=cut
+
+
+1;