Fixed errors and tests and updated DB

This commit is contained in:
Finn 2017-08-14 15:04:24 +01:00
parent b44a256434
commit 65d5bab444
11 changed files with 1859 additions and 3 deletions

View file

@ -6,7 +6,7 @@ use warnings;
use base 'DBIx::Class::Schema';
our $VERSION = 3;
our $VERSION = 4;
__PACKAGE__->load_namespaces;

View file

@ -42,6 +42,12 @@ __PACKAGE__->add_columns(
is_nullable => 0,
set_on_create => 1,
},
"purchase_time" => {
data_type => "datetime",
timezone => "UTC",
is_nullable => 0,
set_on_create => 1,
},
);
__PACKAGE__->set_primary_key("id");