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

(-)a/Koha/Schema/Result/UploadedFile.pm (-5 / +18 lines)
Lines 57-63 __PACKAGE__->table("uploaded_files"); Link Here
57
  default_value: current_timestamp
57
  default_value: current_timestamp
58
  is_nullable: 0
58
  is_nullable: 0
59
59
60
=head2 categorycode
60
=head2 uploadcategorycode
61
61
62
  data_type: 'tinytext'
62
  data_type: 'tinytext'
63
  is_nullable: 1
63
  is_nullable: 1
Lines 67-72 __PACKAGE__->table("uploaded_files"); Link Here
67
  data_type: 'integer'
67
  data_type: 'integer'
68
  is_nullable: 1
68
  is_nullable: 1
69
69
70
=head2 public
71
72
  data_type: 'tinyint'
73
  is_nullable: 1
74
75
=head2 permanent
76
77
  data_type: 'tinyint'
78
  is_nullable: 1
79
70
=cut
80
=cut
71
81
72
__PACKAGE__->add_columns(
82
__PACKAGE__->add_columns(
Lines 87-96 __PACKAGE__->add_columns( Link Here
87
    default_value => \"current_timestamp",
97
    default_value => \"current_timestamp",
88
    is_nullable => 0,
98
    is_nullable => 0,
89
  },
99
  },
90
  "categorycode",
100
  "uploadcategorycode",
91
  { data_type => "tinytext", is_nullable => 1 },
101
  { data_type => "tinytext", is_nullable => 1 },
92
  "owner",
102
  "owner",
93
  { data_type => "integer", is_nullable => 1 },
103
  { data_type => "integer", is_nullable => 1 },
104
  "public",
105
  { data_type => "tinyint", is_nullable => 1 },
106
  "permanent",
107
  { data_type => "tinyint", is_nullable => 1 },
94
);
108
);
95
109
96
=head1 PRIMARY KEY
110
=head1 PRIMARY KEY
Lines 106-113 __PACKAGE__->add_columns( Link Here
106
__PACKAGE__->set_primary_key("id");
120
__PACKAGE__->set_primary_key("id");
107
121
108
122
109
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-08-07 16:06:37
123
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-09-25 15:20:07
110
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ox6orH0SkhCfPdjX24fnZw
124
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Cq/HSuTaBxZH2qSGEddoaQ
111
125
112
126
113
# You can replace this text with custom code or comments, and it will be preserved on regeneration
127
# You can replace this text with custom code or comments, and it will be preserved on regeneration
114
- 

Return to bug 14321