File: Thing.pm

package info (click to toggle)
libdbix-class-perl 0.08010-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,052 kB
  • ctags: 1,064
  • sloc: perl: 10,536; sql: 225; makefile: 45
file content (14 lines) | stat: -rwxr-xr-x 234 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package Thing;
use base 'DBIx::Class::Test::SQLite';

Thing->set_table("thing");
Thing->columns(All => qw(id that_thing));

sub create_sql {
    return qq{
        id              INTEGER,
        that_thing      INTEGER
    };
}

1;