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

(-)a/Koha/Schema/Result/Biblioimage.pm (-3 / +16 lines)
Lines 51-56 __PACKAGE__->table("biblioimages"); Link Here
51
  data_type: 'mediumblob'
51
  data_type: 'mediumblob'
52
  is_nullable: 0
52
  is_nullable: 0
53
53
54
=head2 timestamp
55
56
  data_type: 'timestamp'
57
  datetime_undef_if_invalid: 1
58
  default_value: current_timestamp
59
  is_nullable: 0
60
54
=cut
61
=cut
55
62
56
__PACKAGE__->add_columns(
63
__PACKAGE__->add_columns(
Lines 64-69 __PACKAGE__->add_columns( Link Here
64
  { data_type => "mediumblob", is_nullable => 0 },
71
  { data_type => "mediumblob", is_nullable => 0 },
65
  "thumbnail",
72
  "thumbnail",
66
  { data_type => "mediumblob", is_nullable => 0 },
73
  { data_type => "mediumblob", is_nullable => 0 },
74
  "timestamp",
75
  {
76
    data_type => "timestamp",
77
    datetime_undef_if_invalid => 1,
78
    default_value => \"current_timestamp",
79
    is_nullable => 0,
80
  },
67
);
81
);
68
82
69
=head1 PRIMARY KEY
83
=head1 PRIMARY KEY
Lines 96-103 __PACKAGE__->belongs_to( Link Here
96
);
110
);
97
111
98
112
99
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
113
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-20 10:39:00
100
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WdDuaUrR0IC6+8jJwlev6A
114
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:f6elSD3dDk6vWE4bUirmew
101
115
102
116
103
# You can replace this text with custom content, and it will be preserved on regeneration
117
# You can replace this text with custom content, and it will be preserved on regeneration
104
- 

Return to bug 22987