DBIx::Class and overloading accessors
问题 (Similar to, but with more concrete details that, #11526999) My Result Classes have been built using dbicdump , however I wish to overload the default accessor for a date field. Works, but a bodge To hackytest my idea, I simply added an accessor attribute to the created date key of the add_columns call: __PACKAGE__->add_columns( "stamp_id", { data_type => "integer", is_auto_increment => 1, is_nullable => 0, sequence => "timestamp_stamp_id_seq", }, "date", { data_type => "date", is_nullable =>