Remove AgeRange table and first pass of fixing tests

This commit is contained in:
Tom Bloor 2017-06-13 21:02:24 +01:00
parent a1a608ea44
commit d73ddb6ba2
6 changed files with 55 additions and 95 deletions

View file

@ -1,37 +0,0 @@
package Pear::LocalLoop::Schema::Result::AgeRange;
use strict;
use warnings;
use base 'DBIx::Class::Core';
__PACKAGE__->table("age_ranges");
__PACKAGE__->add_columns(
"id",
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
"string",
{ data_type => "text", is_nullable => 0 },
);
__PACKAGE__->set_primary_key("id");
__PACKAGE__->add_unique_constraint(["string"]);
__PACKAGE__->has_many(
"customers",
"Pear::LocalLoop::Schema::Result::Customer",
{ "foreign.age_range_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
sub TO_JSON {
my $self = shift;
return {
id => $self->id,
string => $self->string,
};
}
1;

View file

@ -23,9 +23,8 @@ __PACKAGE__->add_columns(
size => 255,
is_nullable => 0,
},
"age_range_id" => {
"year_of_birth" => {
data_type => "integer",
is_foreign_key => 1,
is_nullable => 0,
},
"postcode" => {
@ -37,13 +36,6 @@ __PACKAGE__->add_columns(
__PACKAGE__->set_primary_key("id");
__PACKAGE__->belongs_to(
"age_range",
"Pear::LocalLoop::Schema::Result::AgeRange",
{ id => "age_range_id" },
{ is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" },
);
__PACKAGE__->might_have(
"user",
"Pear::LocalLoop::Schema::Result::User",