@@ -, +, @@ --- Koha/Schema/Result/Localization.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Localization.pm +++ a/Koha/Schema/Result/Localization.pm @@ -35,6 +35,12 @@ __PACKAGE__->table("localization"); is_nullable: 0 size: 16 +=head2 interface + + data_type: 'varchar' + is_nullable: 1 + size: 30 + =head2 code data_type: 'varchar' @@ -59,6 +65,8 @@ __PACKAGE__->add_columns( { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, "entity", { data_type => "varchar", is_nullable => 0, size => 16 }, + "interface", + { data_type => "varchar", is_nullable => 1, size => 30 }, "code", { data_type => "varchar", is_nullable => 0, size => 64 }, "lang", @@ -98,8 +106,8 @@ __PACKAGE__->set_primary_key("localization_id"); __PACKAGE__->add_unique_constraint("entity_code_lang", ["entity", "code", "lang"]); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4642LmshpGd3JW7YxM5pIA +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-28 10:27:49 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:z6Ygj7EGpmfEXDk6wZMS+A # You can replace this text with custom code or comments, and it will be preserved on regeneration --