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

(-)a/Koha/Schema/Result/UploadedFile.pm (-10 / +10 lines)
Lines 29-34 __PACKAGE__->table("uploaded_files"); Link Here
29
  is_auto_increment: 1
29
  is_auto_increment: 1
30
  is_nullable: 0
30
  is_nullable: 0
31
31
32
=head2 storage
33
34
  data_type: 'varchar'
35
  is_nullable: 0
36
  size: 255
37
32
=head2 hashvalue
38
=head2 hashvalue
33
39
34
  data_type: 'char'
40
  data_type: 'char'
Lines 57-67 __PACKAGE__->table("uploaded_files"); Link Here
57
  default_value: current_timestamp
63
  default_value: current_timestamp
58
  is_nullable: 0
64
  is_nullable: 0
59
65
60
=head2 uploadcategorycode
61
62
  data_type: 'text'
63
  is_nullable: 1
64
65
=head2 owner
66
=head2 owner
66
67
67
  data_type: 'integer'
68
  data_type: 'integer'
Lines 82-87 __PACKAGE__->table("uploaded_files"); Link Here
82
__PACKAGE__->add_columns(
83
__PACKAGE__->add_columns(
83
  "id",
84
  "id",
84
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
85
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
86
  "storage",
87
  { data_type => "varchar", is_nullable => 0, size => 255 },
85
  "hashvalue",
88
  "hashvalue",
86
  { data_type => "char", is_nullable => 0, size => 40 },
89
  { data_type => "char", is_nullable => 0, size => 40 },
87
  "filename",
90
  "filename",
Lines 97-104 __PACKAGE__->add_columns( Link Here
97
    default_value => \"current_timestamp",
100
    default_value => \"current_timestamp",
98
    is_nullable => 0,
101
    is_nullable => 0,
99
  },
102
  },
100
  "uploadcategorycode",
101
  { data_type => "text", is_nullable => 1 },
102
  "owner",
103
  "owner",
103
  { data_type => "integer", is_nullable => 1 },
104
  { data_type => "integer", is_nullable => 1 },
104
  "public",
105
  "public",
Lines 120-127 __PACKAGE__->add_columns( Link Here
120
__PACKAGE__->set_primary_key("id");
121
__PACKAGE__->set_primary_key("id");
121
122
122
123
123
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54
124
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-04-23 13:11:12
124
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kJUbIULQMBo3t51HvWC8cg
125
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GfaniGpGJh0nlgZ7v/6WHQ
125
126
126
127
127
# You can replace this text with custom code or comments, and it will be preserved on regeneration
128
# You can replace this text with custom code or comments, and it will be preserved on regeneration
128
- 

Return to bug 19318