1 package SGN
::Schema
::Misc
;
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("misc");
27 sequence: 'misc_misc_unique_id_seq'
46 __PACKAGE__
->add_columns(
49 data_type
=> "integer",
50 is_auto_increment
=> 1,
52 sequence
=> "misc_misc_unique_id_seq",
55 { data_type
=> "integer", is_nullable
=> 1 },
57 { data_type
=> "text", is_nullable
=> 1 },
59 { data_type
=> "bytea", is_nullable
=> 1 },
61 __PACKAGE__
->set_primary_key("misc_unique_id");
64 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
65 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:oYvzANrnfJnxudkR0KNN6g
68 # You can replace this text with custom content, and it will be preserved on regeneration