my $new_school = $schema->resultset('Schools')->create({ location => 1, name => 'mySchool', type => 'HighSchool', adress => 'Paris Champs Ellysees 1', description => 'Ecole Superieur', }); #### my $rs = $schema->resultset('Schools')->search({name => 'mySchool'}); #### my $school = $rs->first; print $school->adress; #### $school->adress('New address of the school'); $school->update;