From 76619b225e5ff2f42406bc5b95095643759c6bae Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 19 Jan 2017 16:54:50 +0100 Subject: [PATCH] Bug 17960: DBIC Schema changes for opac_news.content --- Koha/Schema/Result/OpacNews.pm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Koha/Schema/Result/OpacNews.pm b/Koha/Schema/Result/OpacNews.pm index 2a4b80b..fcd25c1 100644 --- a/Koha/Schema/Result/OpacNews.pm +++ b/Koha/Schema/Result/OpacNews.pm @@ -44,9 +44,8 @@ __PACKAGE__->table("opac_news"); is_nullable: 0 size: 250 -=head2 new +=head2 content - accessor: undef data_type: 'text' is_nullable: 0 @@ -95,8 +94,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 }, "title", { data_type => "varchar", default_value => "", is_nullable => 0, size => 250 }, - "new", - { accessor => undef, data_type => "text", is_nullable => 0 }, + "content", + { data_type => "text", is_nullable => 0 }, "lang", { data_type => "varchar", default_value => "", is_nullable => 0, size => 25 }, "timestamp", @@ -169,8 +168,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-10-21 19:50:05 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QivH1Daozdp0BttbPF6CkA +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-01-21 12:39:33 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wfBMbKlWykwfNNNLGkl4BA # You can replace this text with custom content, and it will be preserved on regeneration -- 2.1.4