]> git.ktnx.net Git - lsl.git/blob - lib/App/LazyShoppingList/Schema/Result/Globals.pm
first take at a Dancer2 app, some functions work
[lsl.git] / lib / App / LazyShoppingList / Schema / Result / Globals.pm
1 use v5.28;
2 use warnings;
3 use utf8;
4
5 package App::LazyShoppingList::Schema::Result::Globals;
6
7 use parent qw( DBIx::Class::Core );
8
9 __PACKAGE__->table('globals');
10
11 __PACKAGE__->add_columns(
12     lists_version => { data_type => 'integer' },
13     db_revision   => { data_type => 'integer' },
14 );
15
16
17 1;