Oops, deploy only drops tables if you tell it to..
[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' => {
cb561d1a 18 data_type => 'varchar',
19 size => 100,
0009fa49 20 },
21);
11b78bd6 22DBICTest::Schema::Tag->set_primary_key('tagid');
a02675cd 23
241;