View | Details | Raw Unified | Return to bug 17960
Collapse All | Expand All

(-)a/Koha/Schema/Result/OpacNews.pm (-7 / +5 lines)
Lines 44-52 __PACKAGE__->table("opac_news"); Link Here
44
  is_nullable: 0
44
  is_nullable: 0
45
  size: 250
45
  size: 250
46
46
47
=head2 new
47
=head2 content
48
48
49
  accessor: undef
50
  data_type: 'text'
49
  data_type: 'text'
51
  is_nullable: 0
50
  is_nullable: 0
52
51
Lines 95-102 __PACKAGE__->add_columns( Link Here
95
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
94
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
96
  "title",
95
  "title",
97
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 250 },
96
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 250 },
98
  "new",
97
  "content",
99
  { accessor => undef, data_type => "text", is_nullable => 0 },
98
  { data_type => "text", is_nullable => 0 },
100
  "lang",
99
  "lang",
101
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 25 },
100
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 25 },
102
  "timestamp",
101
  "timestamp",
Lines 169-176 __PACKAGE__->belongs_to( Link Here
169
);
168
);
170
169
171
170
172
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-10-21 19:50:05
171
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-01-21 12:39:33
173
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QivH1Daozdp0BttbPF6CkA
172
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wfBMbKlWykwfNNNLGkl4BA
174
173
175
174
176
# You can replace this text with custom content, and it will be preserved on regeneration
175
# You can replace this text with custom content, and it will be preserved on regeneration
177
- 

Return to bug 17960