1 package # hide from PAUSE
2 DBICTest::Schema::ArtistGUID;
4 use base qw/DBICTest::BaseResult/;
6 # test MSSQL uniqueidentifier type
8 __PACKAGE__->table('artist');
9 __PACKAGE__->add_columns(
11 data_type => 'uniqueidentifier' # auto_nextval not necessary for PK
14 data_type => 'varchar',
19 data_type => 'integer',
28 data_type => 'uniqueidentifier',
29 auto_nextval => 1, # necessary here, because not a PK
33 __PACKAGE__->set_primary_key('artistid');