test
DBICを使うとMyApp::Schema::Result以下にテーブルの定義を書く。 package MyApp::Schema::Result::Hoge; ...; __PACKAGE__->table('hoge'); __PACKAGE__->add_columns( id => { data_type => 'BIGINT', is_nullable => 0, is_auto_increment => 1, extra =>…
DBICを使うとMyApp::Schema::Result以下にテーブルの定義を書く。 package MyApp::Schema::Result::Hoge; ...; __PACKAGE__->table('hoge'); __PACKAGE__->add_columns( id => { data_type => 'BIGINT', is_nullable => 0, is_auto_increment => 1, extra =>…