deploy debugging and drop table statements
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Tag.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 DBICTest::Schema::Tag;
a02675cd 3
4use base qw/DBIx::Class::Core/;
5
333cce60 6__PACKAGE__->load_components('PK::Auto');
7
11b78bd6 8DBICTest::Schema::Tag->table('tags');
0009fa49 9DBICTest::Schema::Tag->add_columns(
10 'tagid' => {
333cce60 11 data_type => 'integer',
0009fa49 12 is_auto_increment => 1,
13 },
14 'cd' => {
15 data_type => 'integer',
16 },
17 'tag' => {
18 data_type => 'varchar'
19 },
20);
11b78bd6 21DBICTest::Schema::Tag->set_primary_key('tagid');
a02675cd 22
231;