<%args> $schema $table $index <%init> my ($s, $t); eval { $s = Alzabo::Create::Schema->load_from_file( name => $schema ); $t = $s->table($table); $t->delete_index($t->index($index)); $s->save_to_file; }; my $e = $@; $m->comp( 'exception', $e ) if $e; $m->redirect( uri( path => 'view_table_other' . Alzabo::GUI::Mason::Config::mason_extension(), query => { schema => $s->name, table => $t->name, }, ), ); <%flags> inherit => 'syshandler'