@@ -, +, @@ --- Koha/Schema/Result/Aqbookseller.pm | 29 ++++------------------------- 1 file changed, 4 insertions(+), 25 deletions(-) --- a/Koha/Schema/Result/Aqbookseller.pm +++ a/Koha/Schema/Result/Aqbookseller.pm @@ -34,22 +34,7 @@ __PACKAGE__->table("aqbooksellers"); data_type: 'longtext' is_nullable: 0 -=head2 address1 - - data_type: 'longtext' - is_nullable: 1 - -=head2 address2 - - data_type: 'longtext' - is_nullable: 1 - -=head2 address3 - - data_type: 'longtext' - is_nullable: 1 - -=head2 address4 +=head2 address data_type: 'longtext' is_nullable: 1 @@ -145,13 +130,7 @@ __PACKAGE__->add_columns( { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, "name", { data_type => "longtext", is_nullable => 0 }, - "address1", - { data_type => "longtext", is_nullable => 1 }, - "address2", - { data_type => "longtext", is_nullable => 1 }, - "address3", - { data_type => "longtext", is_nullable => 1 }, - "address4", + "address", { data_type => "longtext", is_nullable => 1 }, "phone", { data_type => "varchar", is_nullable => 1, size => 30 }, @@ -345,8 +324,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-17 08:54:13 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1lSFcy25po9EBzkNkjL5UA +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-17 09:37:12 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FCBS9Bfm/iN6bla/7xQe7A __PACKAGE__->add_columns( '+active' => { is_boolean => 1 }, --