Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

package Thing;
use strict;
Thing->set_table("thing");
Thing->columns(All => qw(id that_thing));
sub create_sql {
return qq{
id INTEGER,
that_thing INTEGER
};
}
1;