1 package SGN
::Schema
::Author
;
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 use base
'DBIx::Class::Core';
18 __PACKAGE__
->table("authors");
27 sequence: 'authors_author_id_seq'
41 __PACKAGE__
->add_columns(
44 data_type
=> "integer",
45 is_auto_increment
=> 1,
47 sequence
=> "authors_author_id_seq",
50 { data_type
=> "text", is_nullable
=> 1 },
52 { data_type
=> "text", is_nullable
=> 1 },
54 __PACKAGE__
->set_primary_key("author_id");
57 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:32:42
58 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fA2/6P0m0s2ItG4IkmiJ9g
61 # You can replace this text with custom content, and it will be preserved on regeneration