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

@ -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");