Schema update for v 16 to include import lookups
This commit is contained in:
parent
40dbd1eb50
commit
593efcedfa
11 changed files with 2422 additions and 1 deletions
57
lib/Pear/LocalLoop/Schema/Result/ImportLookup.pm
Normal file
57
lib/Pear/LocalLoop/Schema/Result/ImportLookup.pm
Normal file
|
@ -0,0 +1,57 @@
|
|||
package Pear::LocalLoop::Schema::Result::ImportLookup;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use base 'DBIx::Class::Core';
|
||||
|
||||
__PACKAGE__->table("import_lookups");
|
||||
|
||||
__PACKAGE__->add_columns(
|
||||
id => {
|
||||
data_type => "integer",
|
||||
is_auto_increment => 1,
|
||||
is_nullable => 0,
|
||||
},
|
||||
set_id => {
|
||||
data_type => "integer",
|
||||
is_foreign_key => 1,
|
||||
is_nullable => 0,
|
||||
},
|
||||
name => {
|
||||
data_type => "varchar",
|
||||
size => 255,
|
||||
},
|
||||
entity_id => {
|
||||
data_type => "integer",
|
||||
is_foreign_key => 1,
|
||||
is_nullable => 0,
|
||||
},
|
||||
);
|
||||
|
||||
__PACKAGE__->set_primary_key("id");
|
||||
|
||||
__PACKAGE__->belongs_to(
|
||||
"import_set",
|
||||
"Pear::LocalLoop::Schema::Result::ImportSet",
|
||||
{ "foreign.id" => "self.set_id" },
|
||||
{
|
||||
is_deferrable => 0,
|
||||
join_type => "LEFT",
|
||||
on_delete => "NO ACTION",
|
||||
on_update => "NO ACTION",
|
||||
},
|
||||
);
|
||||
|
||||
__PACKAGE__->belongs_to(
|
||||
"entity",
|
||||
"Pear::LocalLoop::Schema::Result::Entity",
|
||||
{ "foreign.id" => "self.entity_id" },
|
||||
{
|
||||
join_type => "LEFT",
|
||||
on_delete => "NO ACTION",
|
||||
on_update => "NO ACTION",
|
||||
},
|
||||
);
|
||||
|
||||
1;
|
|
@ -7,6 +7,7 @@ use base 'DBIx::Class::Core';
|
|||
|
||||
__PACKAGE__->load_components( qw/
|
||||
InflateColumn::DateTime
|
||||
TimeStamp
|
||||
/);
|
||||
|
||||
__PACKAGE__->table("import_sets");
|
||||
|
@ -19,6 +20,7 @@ __PACKAGE__->add_columns(
|
|||
},
|
||||
"date" => {
|
||||
data_type => "datetime",
|
||||
set_on_create => 1,
|
||||
is_nullable => 0,
|
||||
},
|
||||
);
|
||||
|
@ -32,4 +34,11 @@ __PACKAGE__->has_many(
|
|||
{ cascade_copy => 0, cascade_delete => 0 },
|
||||
);
|
||||
|
||||
__PACKAGE__->has_many(
|
||||
"lookups",
|
||||
"Pear::LocalLoop::Schema::Result::ImportLookup",
|
||||
{ "foreign.set_id" => "self.id" },
|
||||
{ cascade_copy => 0, cascade_delete => 0 },
|
||||
);
|
||||
|
||||
1;
|
||||
|
|
Reference in a new issue