Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / PunctuatedColumnName.pm
CommitLineData
8273e845 1package # hide from PAUSE
7653fdac 2 DBICTest::Schema::PunctuatedColumnName;
3
4use base qw/DBICTest::BaseResult/;
5
6__PACKAGE__->table('punctuated_column_name');
7__PACKAGE__->add_columns(
8 'id' => {
9 data_type => 'integer',
10 is_auto_increment => 1,
11 },
12 q{foo ' bar} => {
13 data_type => 'integer',
14 is_nullable => 1,
15 accessor => 'foo_bar',
16 },
17 q{bar/baz} => {
18 data_type => 'integer',
19 is_nullable => 1,
20 accessor => 'bar_baz',
21 },
22 q{baz;quux} => {
23 data_type => 'integer',
24 is_nullable => 1,
25 accessor => 'bar_quux',
26 },
27);
28
29__PACKAGE__->set_primary_key('id');
30
311;