Skip to content
Snippets Groups Projects
Verified Commit 9abe7344 authored by Andrej Ramašeuski's avatar Andrej Ramašeuski
Browse files

Bugfix

parent de2df567
Branches
No related tags found
No related merge requests found
Pipeline #10823 passed
1.1.0 1.1.1
package PZ::Schema::Result::Log;
use strict;
use warnings;
use base 'DBIx::Class::Core';
our $VERSION = 1;
__PACKAGE__->table('log');
__PACKAGE__->add_columns(
id => {
data_type => 'integer',
is_auto_increment => 1,
is_nullable => 0,
sequence => 'uid_seq'
},
qw(
time
shortcut_id
ip
ua
),
);
__PACKAGE__->set_primary_key('id');
1;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment